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