我有一類結構如下: -獲得單獨的類別名稱從
public class Gallery
{
private string _category;
public string Category
{
get
{
return _category;
}
set
{
_category = value;
}
}
}
我創建了一個列表對象是這樣的: - List<Gallery> GalleryList = new List<Gallery>();
我加入的項目從SharePoint列表此列表對象。現在我需要這個列表對象中不同的類別名稱。我試過GalleryList.Distinct()
。但我得到錯誤。如果有人知道答案,請幫助我。
「我收到錯誤」並沒有給我們任何資料... –
也請註明錯誤,以便其他人可能有更多的機會幫助你.. - 哇,你好主人喬恩.. –
我試過'列表 DistinctCategory = GalleryList.Select(x => x.Category).Distinct()。ToList(); '它正在工作。謝謝。 –
user3398794