Beispiel #1
0
 protected bool Equals(IntSeqKeySix other)
 {
     return One == other.One &&
            Two == other.Two &&
            Three == other.Three &&
            Four == other.Four &&
            Five == other.Five &&
            Six == other.Six;
 }
Beispiel #2
0
 public static void Write(
     DataOutput output,
     IntSeqKeySix key)
 {
     output.WriteInt(key.One);
     output.WriteInt(key.Two);
     output.WriteInt(key.Three);
     output.WriteInt(key.Four);
     output.WriteInt(key.Five);
     output.WriteInt(key.Six);
 }