|
Sep 23
|
You can achieve that by using a static block
public class StaticBlockTest
{
static
{
// this block will get run once
// when the class first loads
}
}
|
|
You can achieve that by using a static block
public class StaticBlockTest
{
static
{
// this block will get run once
// when the class first loads
}
}
|
|
Recent Comments