how to call a private constructor

Newbie Member
10Sep2007,20:41   #1
cmrhema's Avatar
Hello
I have created a class also a constructor which is (should be, its one of the conditions) private.
Now I am supposed to call it in the main program. My team leader says there is a trick to call it. I can call the variable j(as it is static). but not con.
Please help me out.

public class con
{
private con()
{
Console.WriteLine("private constructor");
}
public static int j = 5;
}
}

Thanking you
cmrhema
Team Leader
11Sep2007,02:13   #2
DaWei's Avatar
Overload operator new in your class, and make it public.
Newbie Member
11Sep2007,09:01   #3
cmrhema's Avatar
Thanks for the reply

I am not supposed to make the constructor public(One of the conditions).
Moreover I am required to write a method inside the constructor that can be public and i am supposed to call it in the main()