Implemented interface member:
method
Equals
System.IEquatable<T>.Equals(T)
3 references to Equals
System.Data.Common (3)
System\Data\Selection.cs (3)
25public static bool operator ==(IndexField if1, IndexField if2) => if1.Equals(if2); 27public static bool operator !=(IndexField if1, IndexField if2) => !if1.Equals(if2); 31obj is IndexField other && Equals(other);