5
votes
3answers
3k views
Difference initializing static variable inline or in static constructor in C#
I would like to know what is the difference between initializing a static member inline as in:
class Foo
{
private static Bar bar_ = new Bar();
}
or initializi …
2
votes
3answers
187 views
Is there a way to use inline comments to document members in .NET?
Is there a way to document a member inline in .Net? Let me explain. Most tools that extract documentation from comments support some kind of inline documentation where you can add a brief after the …
9
votes
3answers
182 views
Removing code from Release build in .NET
I've been doing some performance testing around the use of System.Diagnostics.Debug, and it seems that all code related to the static class Debug gets completely removed when the Release configurat …
0
votes
How do you set up your .NET development tree?
If I understand your structure correctly, I think you are going to have many duplicates in your dev tree related to "tools" and "lib". Most likely these are external tools and libraries that might …
0
votes
Learning C# in Mono
To learn the language, you will be just fine. There are some libraries missing in mono, but that would not prevent you from learning the language. You can find more information at the …
2
votes
How to refer to the path to an assembly in the GAC within registry entries added by a Windows Installer package?
If you have a component per file, which you should anyway, the KeyPath of the component points to the location where the file gets installed (in this case the GAC). You can use the component key as …
1
vote
Can I force subclasses to override a method without making it abstract?
You could use the reference to implementation idiom in your class.
public class DesignerHappy
{
private ADesignerHappyImp imp_;
public int MyMethod()
{
return i …
