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

◆ Equals() [3/7]

static bool System.Reflection.Internal.ByteSequenceComparer.Equals ( byte?[] left,
byte?[] right )
inlinestaticpackage

Definition at line 54 of file ByteSequenceComparer.cs.

55 {
56 if (left == right)
57 {
58 return true;
59 }
60 if (left == null || right == null || left.Length != right.Length)
61 {
62 return false;
63 }
64 for (int i = 0; i < left.Length; i++)
65 {
66 if (left[i] != right[i])
67 {
68 return false;
69 }
70 }
71 return true;
72 }