Skip to content

Instantly share code, notes, and snippets.

@onionmk2
Last active February 12, 2017 14:25
Show Gist options
  • Select an option

  • Save onionmk2/d80ea53687b30ba3d5390e22bcccf732 to your computer and use it in GitHub Desktop.

Select an option

Save onionmk2/d80ea53687b30ba3d5390e22bcccf732 to your computer and use it in GitHub Desktop.

c#ではフィールドとプロパティは別のものを指す用語。

フィールド

クラスまたは構造体で直接宣言される任意の型の変数です。 フィールドは、それを含んでいる型のメンバーです。 クラスや構造体には、インスタンス フィールドと静的フィールドのいずれかまたは両方が含まれていることがあります。 https://msdn.microsoft.com/ja-jp/library/ms173118.aspx

プロパティ

プロパティは、プライベート フィールドの値の読み取り、書き込み、または計算を行う、柔軟な機構が用意されたメンバーです。 https://msdn.microsoft.com/ja-jp/library/x9fsa0sw.aspx

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment