Equals() public method

public Equals ( BinaryOpStorage eqlStorage, object obj ) : bool
eqlStorage BinaryOpStorage
obj object
return bool
Example #1
0
 public static bool Equal(BinaryOpStorage/*!*/ eqlStorage, RubyStruct/*!*/ self, object other) {
     return self.Equals(eqlStorage, other);
 }
Example #2
0
 public static bool Equal(RubyStruct /*!*/ self, object other)
 {
     return(self.Equals(other));
 }
Example #3
0
 public static bool Equal(RubyStruct/*!*/ self, object other) {
     return self.Equals(other);
 }
Example #4
0
 public static bool Equal(BinaryOpStorage /*!*/ eqlStorage, RubyStruct /*!*/ self, object other)
 {
     return(self.Equals(eqlStorage, other));
 }