In java theres this thing, for example :
public class JavaClass1
{
static
{
System.out.println("This function is called once, when the class is loaded in memory");
}
}
Does VB.net has got an equivalent "static {...}" like the above example java class?
Thank you
public class JavaClass1
{
static
{
System.out.println("This function is called once, when the class is loaded in memory");
}
}
Does VB.net has got an equivalent "static {...}" like the above example java class?
Thank you