-4

C# でメソッドを呼び出すにはどうすればよいですか? GetArea と GetPerimeter は、呼び出す必要があるメソッドです。

これが私が取り組んでいる私のコードです:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MyRectangle

class Rectangle
{
    // Set private variables
    private int _height=0;
    private int _width=0;
    // Accessors
    public int Height{
        set { _height = 6; }
        get { return _height;}
    }
    public int Width {
        set { _width =8; }
        get { return _width;}
    }

    //Public

        public int GetArea()
            {
            return (_width * _height);
            }

            public int GetPerimeter()
            {
            return ((2 * _width) + (2 * _height));
            } 


}
Console.Write("Height is " + Height);
Console.Write("Width is " + Width);
Console.Write.GetArea() 
Console.Write.GetPerimeter() 

}

コンソールは、デバッグ目的で出力が表示される場所です。メソッドを呼び出す場所がわかりません。

ありがとうございました!

4

2 に答える 2