Stores a map of aliases to system types. E.g. int to System.Int32.
Static Public Member Functions | |
static void | Add (string alias, Type forType) |
Adds an alias to the global map. More... | |
static Type | Find (string alias) |
Finds the system type for a given alias. More... | |
static void | Setup () |
Called when the system is starting to setup the default alias set. More... | |
Static Private Attributes | |
static Dictionary< string, Type > | AliasMap =new Dictionary<string,Type>() |
The global lookup map of alias to type. More... | |
|
inlinestatic |
Adds an alias to the global map.
alias | The alias string to use. |
forType | The system type it maps to. |
|
inlinestatic |
Finds the system type for a given alias.
alias | The alias to look for. |
|
inlinestatic |
Called when the system is starting to setup the default alias set.