嗚嗚喔學習筆記: C# - Property

搜尋此網誌

2016年7月14日 星期四

C# - Property

程式碼:
using System;

/// <summary>
///     A simple indexer example.
/// </summary>
class ConsolePrint
{
    class User {
        private string FirstName = "王";
        private string LastName = "小名";
        public User() { }
        public string FullName
        {
            get
            {
                return this.FirstName + this.LastName;
            }
            set { }
        }
    }
    

    static void Main(string[] args)
    {
        var user = new User();
        Console.WriteLine("Username = {0}" , user.FullName );
        Console.ReadLine();
    }
}
輸出: Username = 王小明
結果: 可以當set get函式使用 , 方便封裝

沒有留言:

張貼留言