Beispiel #1
0
        public static OpSystem GetInstance(string name)
        {
            if (instance == null)
            {
                instance = new OpSystem(name);
            }

            return(instance);
        }
Beispiel #2
0
 public void Launch(string osName)
 {
     Os = OpSystem.GetInstance(osName);
 }