コード例 #1
0
ファイル: ModuleH.cs プロジェクト: adarshp1395/InClass4
 static void Main(string[] args)
 {
     Pig myPig = new Pig(); // Create a Pig object
     myPig.animalSound();  // Call the abstract method
     myPig.sleep();  // Call the regular method
 }
コード例 #2
0
ファイル: ModuleI.cs プロジェクト: adarshp1395/InClass4
        static void Main(string[] args)
        {
            Pig myPig = new Pig();  // Create a Pig object

            myPig.animalSound();
        }