public static You GetInstance() { if (_instance == null) { _instance = new You(); } return(_instance); }
public static void Run() { Log.Info("Singleton Pattern"); Me.Instance.Print(); You.GetInstance().Print(); }