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

◆ Equals() [2/3]

bool Microsoft.Xna.Framework.Graphics.DeclarationManager.Equals ( VertexElement[] x,
VertexElement[] y )
inlineprivate

Definition at line 442 of file DeclarationManager.cs.

443 {
444 int num = x.Length;
445 if ((nint)num != (nint)y.LongLength)
446 {
447 return false;
448 }
449 int num2 = 0;
450 if (0 < num)
451 {
452 do
453 {
454 if (!(x[num2] != y[num2]))
455 {
456 num2++;
457 continue;
458 }
459 return false;
460 }
461 while (num2 < (nint)x.LongLength);
462 }
463 return true;
464 }

Referenced by Microsoft.Xna.Framework.Graphics.DeclarationManager.Equals().