コード例 #1
0
ファイル: IntSeqKeyTwo.cs プロジェクト: lanicon/nesper
 public static void Write(
     DataOutput output,
     IntSeqKeyTwo key)
 {
     output.WriteInt(key.One);
     output.WriteInt(key.Last);
 }
コード例 #2
0
ファイル: IntSeqKeyTwo.cs プロジェクト: lanicon/nesper
 protected bool Equals(IntSeqKeyTwo other)
 {
     return One == other.One && Two == other.Two;
 }