Created
August 27, 2022 18:31
-
-
Save Draco18s/0a359e62a0f700888f88f142eb7e39d2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Type eventType = typeof(T); | |
MessengerInternal.OnBroadcasting(eventType, mode); | |
Action<T>[] invocationList = MessengerInternal.GetInvocationList<Action<T>>(eventType); | |
foreach(Action<T> del in invocationList) { | |
del.Invoke(arg1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment