我想將幾個字符串屬性合併爲一個字符串,以使排序和顯示更容易。我想知道是否有辦法做到這一點,而不必遍歷集合或類的列表。類似於下面的Person類中的FullName。是否有可能創建一個類屬性是其他屬性的組合?
public class Person
{
public string Last {get;set;}
public string First {get;set;}
public string FullName = Last + ", " + First {get;}
}
我最喜歡這個,但是你不小心換掉了First and Last – SLoret