Type.GetType("System.String")
Is there a lookup for the aliases available somewhere?
Type.GetType("string") returns null.
|
|
|
|
|
|
|
This is not possible programmatically, since the 'aliases' are in fact keywords introduced in C#, and You could create a dictionary with the following values:
|
||
|
|
|
|
Aliases (int, bool etc.) are not defined in CLS. They're just compile-time constants, that are replaced at runtime. This means that by the time your program is running, and you can do things "programmatically, aliases are already gone. You can only do something like this:
|
||
|
|
|
|
The "aliases" are part of the language definition. You need to look them up in the language spec in question. They are compiled away, and don't exist at runtime - string becomes System.String, int becomes System.Int32, etc. |
||
|
|