0

タイプ「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) このオブジェクトをリストから見つけるにはどうすればよいですか?

4

3 に答える 3