Created
July 11, 2016 09:37
-
-
Save z3t0/62bc90120a40f77d7087126d0732f9eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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