Esempio n. 1
0
        private static void MakeCharacter(int employeeId)
        {
            Console.WriteLine($"{employeeId}さんの聖騎士");
            Console.WriteLine("-------------------");

            switch (employeeId)
            {
            case 92:
                break;

            case 667:
                boy667 boy = new boy667(5);
                boy.prologue();
                boy.specialTraining(5);
                break;

            default:
                throw new ArgumentNullException($"{employeeId}さんのキャラクターは存在しません。");
            }
        }