Skip to content

Instantly share code, notes, and snippets.

@Clancey
Created February 9, 2015 20:45
Show Gist options
  • Save Clancey/0f494a9457400bd2889c to your computer and use it in GitHub Desktop.
Save Clancey/0f494a9457400bd2889c to your computer and use it in GitHub Desktop.
public static void EnsureInvokedOnMainThread(Action action)
{
if (NSThread.Current.IsMainThread)
{
action();
return;
}
BeginInvokeOnMainThread (action );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment