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