コード例 #1
0
ファイル: Program.cs プロジェクト: Lydiasaurus/Personal
 static void Main(string[] args)
 {
     Student Jim = new Student();
     using (Professor Breedlove = new Professor(Jim))
     using (Spouse Sally = new Spouse(Jim))
     {
         Jim.DoWork();
         //Jim.finishedWorking();
     }
 }