Skip to content

Instantly share code, notes, and snippets.

@TBertuzzi
Created July 28, 2021 00:38
Show Gist options
  • Save TBertuzzi/7aff9f2bdb08c45247832587926866c9 to your computer and use it in GitHub Desktop.
Save TBertuzzi/7aff9f2bdb08c45247832587926866c9 to your computer and use it in GitHub Desktop.
EventAggregator
private static EventAggregator instance;
public static EventAggregator Instance
{
get
{
if (instance == null)
{
instance = new EventAggregator();
}
return instance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment