class User
{
private User() { }
private static User _instance;
public static User Instance
{
get
{
if(_instance == null)
{
_instance = new User();
}
return _instance;
}
}
}