3
votes
Accessing a Collection Through Reflection
Just get the value of the property and then cast it into an IEnumerable. Here is some (untested) code to give you an idea:
ClassWithListProperty obj = new ClassWithListProperty();
o …
2
votes
Command Pattern : How to pass parameters to a command ?
Pass the person when you create the command object:
ICommand command = new DeletePersonCommand(person);
so that when you execute the command, it already knows ever …
85
votes
5
votes
Regular expression to convert mark down to HTML
A single regex won't do. Every text markup will have it's own html translator. Better look into how the existing converters are implemented to get an idea on how it works.
…
25
votes
Easier way to start debugging a windows service in C#
If I want to quickly debug the service, I just drop in a Debugger.Break() in there. When that line is reached, it will drop me back to VS. Don't forget to remove that line when you are …
0
votes
Controlling access to an internal collection in c# - Pattern required
The simplest that I can think of is return a readonly version of the underlying collection if editing is no longer …
2
votes
.NET currency formatter: can I specify the use of banker’s rounding?
Regexp is a pattern matching language. You can't do arithmetic operations in Regexp.
Do some experiements with IFormatProvider and ICustomFormatter. Here is a link might po …
0
votes
how do i read a time value and then insert it into TimeSpan variables
You can't change the properties of a TimeSpan. You need to create a new instance and pass the new values there.
…
10
votes
C# Exception Handling continue on error
if (myHashtable.ContainsKey(key))
duplicates.Add(key);
else
myHashtable.Add(key, value);
…
6
votes
7
votes
Can Regex be used for this particular string manipulation?
I converted Greg Hewgill's python code to C# and it worked!
[Test]
public void ReplaceTextInQuotes()
{
Assert.AreEqual("axbx'cPdPe'fxgh'iPj'k",
Regex.Replace("axbx'cxdxe'fxgh …
4
votes
c# downcasting when binding to and interface
Another way to do this is to perform a typecheck before calling the method:
if (animal is Pig) DoPigStuff();
if (animal is Dog) DoDogStuff();
What you are looking …
9
votes
What’s the best way to get the name of a folder that doesn’t exist?
Name it after a GUID - just take out the illegal characters.
…
23
votes
C# “Using” Syntax
When you see a using statement, think of this code:
StreadReader rdr;
try
{
rdr = File.OpenText("file.txt");
//do stuff
}
finally
{
rdr.Dispose();
}
So …
4
votes
How can I tell when .Net System.Diagnostics.Process ran sucessfully or failed?
You can catch the Win32Exception to check if …
