Equals() public method

public Equals ( BinaryOpStorage eqlStorage, object obj ) : bool
eqlStorage BinaryOpStorage
obj object
return bool
コード例 #1
0
ファイル: StructOps.cs プロジェクト: jschementi/iron
 public static bool Equal(BinaryOpStorage/*!*/ eqlStorage, RubyStruct/*!*/ self, object other) {
     return self.Equals(eqlStorage, other);
 }
コード例 #2
0
ファイル: StructOps.cs プロジェクト: gaybro8777/ironruby
 public static bool Equal(RubyStruct /*!*/ self, object other)
 {
     return(self.Equals(other));
 }
コード例 #3
0
ファイル: StructOps.cs プロジェクト: jcteague/ironruby
 public static bool Equal(RubyStruct/*!*/ self, object other) {
     return self.Equals(other);
 }
コード例 #4
0
 public static bool Equal(BinaryOpStorage /*!*/ eqlStorage, RubyStruct /*!*/ self, object other)
 {
     return(self.Equals(eqlStorage, other));
 }