ElementaryEquals() public static method

public static ElementaryEquals ( obj, other ) : bool?
return 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;
Ejemplo n.º 3
0
 public static bool operator ==(ObjectType x, ObjectType y) => EquatableHelper.ElementaryEquals(x, y) ?? x.m_Value == y.m_Value;
Ejemplo n.º 4
0
 public bool Equals(T other)
 {
     return(EquatableHelper.ElementaryEquals(this, other) ?? EquatableHelper.PropertiesEqual(this, other, EquatableProperties));
 }
Ejemplo n.º 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);