C# 自動化プロパティ

class SampleClass
{
public string Type { get; set; } = “nothing”;
public string Name { get; } = “abc”;
public string Game { get; } = “game”;
}

class MainClass
{
static void Main()
{
var test = new SampleClass();
Console.WriteLine(test.Type);
Console.WriteLine(test.Name);
Console.WriteLine(test.Game);
}
}

投稿者: chosuke

趣味はゲームやアニメや漫画などです

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です