Going from Java to C# I have the following question: In java I could do the following:
Java
C#
public class Application { static int attrib
You just can write a static constructor block like this,
static Application(){ attribute=5; }
This is what I could think of.