ElementaryEquals() public static méthode

public static ElementaryEquals ( obj, other ) : bool?
Résultat bool?
 public bool Equals(T x, T y)
 {
     return(EquatableHelper.ElementaryEquals(x, y) ?? EquatableHelper.PropertiesEqual(x, y, m_EquatableProperties));
 }
 public bool Equals(DatabaseStringOrdinal other) => EquatableHelper.ElementaryEquals(this, other) ?? CompareImpl(this, other) == 0;
 public static bool operator ==(ObjectType x, ObjectType y) => EquatableHelper.ElementaryEquals(x, y) ?? x.m_Value == y.m_Value;
 public bool Equals(T other)
 {
     return(EquatableHelper.ElementaryEquals(this, other) ?? EquatableHelper.PropertiesEqual(this, other, EquatableProperties));
 }
Exemple #5
0
 public static bool operator ==(SystemPrivileges x, SystemPrivileges y) => EquatableHelper.ElementaryEquals(x, y) ?? EquatableHelper.ElementaryEquals(x.m_Value, y.m_Value) ?? BitArrayEquals(x.m_Value, y.m_Value);