コード例 #1
0
ファイル: Program.cs プロジェクト: pmsagar/DesignPatterns
        private static void PrintEmployeeDetailsEagerSingleton()
        {
            EagerSingleton employee = EagerSingleton.GetInstance;

            employee.PrintDetails("This is employee message.");
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: pmsagar/DesignPatterns
        private static void PrintStudentDetailsEagerSingleton()
        {
            EagerSingleton student = EagerSingleton.GetInstance;

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