Skip to content

Instantly share code, notes, and snippets.

@janbaer
Created February 1, 2013 11:43
Show Gist options
  • Save janbaer/4690841 to your computer and use it in GitHub Desktop.
Save janbaer/4690841 to your computer and use it in GitHub Desktop.
Thread.IsUIThread
public static class ThreadExtensions
{
public static bool IsUIThread(this Thread thread)
{
return SynchronizationContext.Current != null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment