Skip to content

Instantly share code, notes, and snippets.

@ztirom
Created February 11, 2017 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ztirom/149cb65d4d783323aa00afd0a72c7eee to your computer and use it in GitHub Desktop.
Save ztirom/149cb65d4d783323aa00afd0a72c7eee to your computer and use it in GitHub Desktop.
Thread Job
static void ThreadDemo(Args _args)
{
Thread firstT = new Thread(),
secondT = new Thread();
firstT.run(classnum(MyDemo), identifierstr(slow));
secondT.run(classnum(MyDemo), identifierstr(fast));
pause;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment