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

◆ Equals() [2/3]

bool System.Diagnostics.Metrics.StringSequenceMany.Equals ( StringSequenceMany other)
inline

Definition at line 17 of file StringSequenceMany.cs.

18 {
19 if (_values.Length != other._values.Length)
20 {
21 return false;
22 }
23 for (int i = 0; i < _values.Length; i++)
24 {
25 if (_values[i] != other._values[i])
26 {
27 return false;
28 }
29 }
30 return true;
31 }

References System.Diagnostics.Metrics.StringSequenceMany._values, and System.other.

Referenced by System.Diagnostics.Metrics.StringSequenceMany.Equals().