using System.Collections.Generic;
public static void Main()
var emp = new Employee();
emp.Addresses.Add("嘉義市大馬路 123 號");
emp.Addresses = new List<string>();
public List<string> Addresses { get; }
Addresses = new List<string>();
public void DoSomethingStupid()