public void Execute(int index) { Target[index] = new DataWithIndex <T> { Index = index, Value = Source[index] }; }
public int CompareTo(DataWithIndex <TSource> other) { return(Value.CompareTo(other.Value)); }