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

◆ EqualInvocationLists()

static bool System.MulticastDelegate.EqualInvocationLists ( object[] a,
object[] b,
int start,
int count )
inlinestaticprivate

Definition at line 289 of file MulticastDelegate.cs.

290 {
291 for (int i = 0; i < count; i++)
292 {
293 if (!a[start + i].Equals(b[i]))
294 {
295 return false;
296 }
297 }
298 return true;
299 }
override bool Equals([NotNullWhen(true)] object? obj)

References System.count, System.Runtime.Serialization.Dictionary, System.MulticastDelegate.Equals(), and System.start.

Referenced by System.MulticastDelegate.RemoveImpl().