Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Equals()

override bool System.Data.IndexField.Equals ( [NotNullWhen(true)] object obj)
inline

Definition at line 26 of file IndexField.cs.

27 {
28 if (!(obj is IndexField))
29 {
30 return false;
31 }
32 return this == (IndexField)obj;
33 }
IndexField(DataColumn column, bool isDescending)
Definition IndexField.cs:11

References System.Data.IndexField.IndexField(), and System.obj.