示例#1
0
        private static void PrintEmployeeDetailsEagerSingleton()
        {
            EagerSingleton employee = EagerSingleton.GetInstance;

            employee.PrintDetails("This is employee message.");
        }
示例#2
0
        private static void PrintStudentDetailsEagerSingleton()
        {
            EagerSingleton student = EagerSingleton.GetInstance;

            student.PrintDetails("This is student message.");
        }