I am trying to only get the string "DateTime" from my Type. But if I return type.Name
I get "Nullable'1". If I return type.FullName
I get:
System.Nullable`1[[System.DateTime, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]"
Is there no way for me to simply get "DateTime" as a return string?