I am parsing some objects and I'd like to dynamically generate some code. The thing is that when I'm reading types I got things like :
System.String
System.Int32
Boolean
I know it's strictly identical for C# to string, int and bool. But when I'm parsing my object, i got the "System" versions and I want to dynamically generate some code using strings and I want to generate the alias description, can I do it easyly ? (without something like a Dictionary associating typeofs to strings...)