我有這個List
包含Story
類的實例:搜索對象的列表<Object>
List<Story> Stories = new List<Story>();
public class Story
{
public string Id { get; set; }
public double Height { get; set; }
public double Elevation { get; set; }
}
列表中的每個實例是唯一的:
Stories = {Story1, Story2, ...}
現在,在另一種方法我想在List
來搜索特定Story
而整個對象分配到新創建的對象
Story st = Find a Story in the Stories that its Story.Id=="Story2"
我怎樣才能做到這一點?
謝謝。第一個答案沒有奏效。它正在工作。 – Vahid
@Vahid沒問題,我知道了。 ) –
感謝您的完整的答案。 – Vahid