コード例 #1
0
ファイル: Integer.cs プロジェクト: dahlia/bencodex.net
 bool IEquatable <Integer> .Equals(Integer other)
 {
     return(Value.Equals(other.Value));
 }
コード例 #2
0
ファイル: Integer.cs プロジェクト: dahlia/bencodex.net
 int IComparable <Integer> .CompareTo(Integer other)
 {
     return(((IComparable <BigInteger>) this).CompareTo(other.Value));
 }