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

◆ RemoveAll()

static ComEventsSink System.Runtime.InteropServices.ComEventsSink.RemoveAll ( ComEventsSink sinks)
inlinestatic

Definition at line 41 of file ComEventsSink.cs.

42 {
43 while (sinks != null)
44 {
45 sinks.Unadvise();
46 sinks = sinks._next;
47 }
48 return null;
49 }

References System.Runtime.InteropServices.ComEventsSink._next, and System.Runtime.InteropServices.ComEventsSink.Unadvise().

Referenced by System.Runtime.InteropServices.ComEventsInfo.~ComEventsInfo().