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