我遍歷類型爲「prvEmployeeIncident」的對象的列表。我如何找到一個對象,我正在迭代通過
對象具有以下屬性:
public DateTime DateOfIncident { get; set; }
public bool IsCountedAsAPoint;
public decimal OriginalPointValue;
public bool IsFirstInCollection { get; set; }
public bool IsLastInCollection { get; set; }
public int PositionInCollection { get; set; }
public int DaysUntilNextPoint { get; set; }
public DateTime DateDroppedBySystem { get; set; }
public bool IsGoodBehaviorObject { get; set; }
我的列表由DateOfIncident屬性排序。我想找到下一個對象up列表IsCounted == true並將其更改爲IsCounted = false。
一個問題:
1)如何在列表中找到該對象?
可能是下一個匹配的項目。 – Romoku 2013-05-02 17:16:00