コード例 #1
0
        static void Main(string[] args)
        {
            Dog Spot = new Dog();

            Spot.Age = 5;
            Spot.move();
            Spot.makeNoise();
        }
コード例 #2
0
        static void Main(string[] args)
        {
            Dog spot = new Dog();

            spot.move();
        }
コード例 #3
0
 static void Main(string[] args)
 {
     Dog Spot = new Dog();
     Spot.move();
 }