Esempio n. 1
0
 public static void Write(
     DataOutput output,
     IntSeqKeyTwo key)
 {
     output.WriteInt(key.One);
     output.WriteInt(key.Last);
 }
Esempio n. 2
0
 protected bool Equals(IntSeqKeyTwo other)
 {
     return One == other.One && Two == other.Two;
 }