6
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
195 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 …
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 …
2
votes
Enterprise Design Patterns for .NET
The reviews in the Amazon page claim that the book has extensive examples in Java and C#. They also claims lots of UML, which makes me think that the book will be useful even if most samples are Ja …
0
votes
.NET Framework versions
Especially with .NET 2.0 many things have changed in the .NET framework (not only at the language level). You will need version 1.1 to run programs linked against that version.
Now, if part …
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 …
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 …
