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