2021-02-09-Get;Set存取 發表於 2021-02-09 更新於 2021-03-23 文章字數: 203 所需閱讀時間 ≈ 1 分鐘 今天來認識Get;Set;存取器 參考資料:小山的 C# 教學-第26課-Get & Set 存取器 結論 get 用來讀取變數內容 set 用來改變變數內容值 範例123456class Demo{ public string user { get; } // 只能存取無法變更值,類似private public string user2 { get;set;} // 可以傳入數值改變值}