I need to get the Inner Type of a Nullable Type (not an instance of given Nullable Type).
For example, if I have:
Type myType = typeof(int?);
How can I determine that myType has an Inner Type of System.int32?
Thanks
For example, if I have:
Type myType = typeof(int?);
How can I determine that myType has an Inner Type of System.int32?
Thanks
Comment