Possible Duplicate:
Is a Java static block equivalent to a C# static constructor?
Is there an equivalent to:
public class people {
private static int x;
//...
static {
x = 3;
}
}
of JAVA in C#.NET?
Is there an equivalent to:
of JAVA in C#.NET? |
||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Yeah, it looks mostly the same
but you could also do this:
|
|||||||
|
|
you can use a static constructor
see http://msdn.microsoft.com/en-us/library/k9x6w0hc(v=vs.80).aspx or you can just initialise it as-is
|
|||
|
|