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