Equals() protected method

protected Equals ( ECFieldElement other ) : bool
other ECFieldElement
return bool
コード例 #1
0
ファイル: ECCurve.cs プロジェクト: abdullah-raja/DBProject
 protected bool Equals(
     ECCurve other)
 {
     return(a.Equals(other.a) && b.Equals(other.b));
 }