Equals() public méthode

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