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

◆ Equals() [2/3]

bool System.Globalization.SortVersion.Equals ( [NotNullWhen(true)] SortVersion? other)
inline

Definition at line 47 of file SortVersion.cs.

48 {
49 if (other == null)
50 {
51 return false;
52 }
53 if (m_NlsVersion == other.m_NlsVersion)
54 {
55 return m_SortId == other.m_SortId;
56 }
57 return false;
58 }

References System.Globalization.SortVersion.m_NlsVersion, System.Globalization.SortVersion.m_SortId, and System.other.