Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created December 7, 2019 15:06
Embed
What would you like to do?
private static bool _scientistInitialized;
private static void InitializeResultPublisherAsNeeded()
{
if (_scientistInitialized) return;
_scientistInitialized = true;
Scientist.ResultPublisher = new ResumeResultPublisher();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment