2017年9月14日 星期四

[C#] Get Set ,如何設定 read only




一般常見的 Get/ Set function 寫法
        public int gNum2 {get; set;}


但如果想要設定,外部只能 read only 的話,則可以透過下列達到此目標
        public int gNum { get; private set;}


Ref:
微軟: Auto-Implemented Properties (C# Programming Guide)
https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/auto-implemented-properties


C# 快速建立自訂類別(CLASS) 屬性 GET & SET 精簡程式碼

沒有留言:

張貼留言