You should be looking for a static constructor, if so and if youre using c# you might wanna run this code. Static constructors grants that you run initializing code before running any other code within the class.
public class A
{
public static void Method()
{
Console.WriteLine("METHOD!!!");
}
public void Method2()
{
Console.WriteLine("INSTANCE METHOD!");
}
static A()
{
Console.WriteLine("STATIC CTOR");
}
}
class Program
{
static void Main(string[] args)
{
A.Method();
new A().Method2();
A.Method();
A.Method();
A.Method();
A.Method();
A.Method();
A.Method();
}
}
Its then the output!
STATIC CTOR
METHOD!!!
INSTANCE METHOD!
METHOD!!!
METHOD!!!
METHOD!!!
METHOD!!!
METHOD!!!
METHOD!!!
Initializemethod. – Prince John Wesley Oct 20 '11 at 4:36