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