コード例 #1
0
 public Microwave(Drive drive, Power power, Notification notification)
 {
     _drive        = drive;
     _power        = power;
     _notification = notification;
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: tami-sub/ict
        static void drive_driveevent(object sender, EventArgs e)
        {
            Drive d = (Drive)sender;

            Console.WriteLine(d.ToString());
        }