So I\'m building an application that is going to do a ton of code generation with both C# and VB output (depending on project settings).
I\'ve got a CodeTemplateEngi
There are two issues here:
System.Int32 has the C# alias int, which you prefer.System.Nullable can be indicated using a ? symbol in C#, which you prefer.There are no methods included with the .NET Framework to take these into account when converting the type name to a string. You are going to have to roll your own.