Skip to content

Instantly share code, notes, and snippets.

@z3t0
Created July 11, 2016 09:37
Show Gist options
  • Select an option

  • Save z3t0/62bc90120a40f77d7087126d0732f9eb to your computer and use it in GitHub Desktop.

Select an option

Save z3t0/62bc90120a40f77d7087126d0732f9eb to your computer and use it in GitHub Desktop.
Type GetType(string name)
{
foreach(KeyValuePair<string, Type> script in scripts)
{
if(script.Key == name)
{
return script.Value;
}
}
// exit without returning
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment