以下の Dog クラスを使用して、次のプログラムを作成しなさい。
- Dog クラスのインスタンスを作成する。
- Name プロパティで名前を設定する。
- ShowProfile メソッドで名前を表示する。
Class Dog
Private mName As String = ""
Public Property Name() As String
Get
Return mName
End Get
Set(value As String)
mName = value
End Set
End Property
Public Sub ShowProfile()
Console.WriteLine(mName)
End Sub
End Class