我正在遍历“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 属性排序。我想在列表中找到 IsCounted == true 的下一个对象并将其更改为 IsCounted = false。
一个问题:
1)我如何在列表中找到这个对象?