How do I convert a System.Type to its nullable version? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T09:29:19Zhttp://stackoverflow.com/feeds/question/108104http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/108104/how-do-i-convert-a-system-type-to-its-nullable-version8How do I convert a System.Type to its nullable version?AlexDuggleby2008-09-20T13:08:11Z2008-09-23T09:51:42Z
<p>Once again one of those: "Is there an easier built-in way of doing things instead of my helper method?"</p>
<p>So it's easy to get the underlying type from a nullable type, but how do I get the nullable version of a .NET type?</p>
<p>So I have</p>
<pre><code>typeof(int)
typeof(DateTime)
System.Type t = something;
</code></pre>
<p>and I want</p>
<pre><code>int?
DateTime?
</code></pre>
<p>or</p>
<pre><code>Nullable<int> (which is the same)
if t is primitive then Nullable<T> else just T
</code></pre>
<p>Any suggestions? (Is there something built in.)
Thanks in advance.</p>
http://stackoverflow.com/questions/108104/how-do-i-convert-a-system-type-to-its-nullable-version/108122#10812217Answer by Alex Lyman for How do I convert a System.Type to its nullable version?Alex Lyman2008-09-20T13:15:32Z2008-09-23T09:30:36Z<p>Here is the code I use:</p>
<pre><code>Type GetNullableType(Type type) {
// Use Nullable.GetUnderlyingType() to remove the Nullable<T> wrapper if type is already nullable.
type = Nullable.GetUnderlyingType(type);
if (type.IsValueType)
return typeof(Nullable<>).MakeGenericType(type);
else
return type;
}
</code></pre>
<p>Edit: Original code had a bug where it would behave unexpectedly if <code>type</code> was itself a <code>Nullable<T></code>.</p>
http://stackoverflow.com/questions/108104/how-do-i-convert-a-system-type-to-its-nullable-version/108129#1081291Answer by kronoz for How do I convert a System.Type to its nullable version?kronoz2008-09-20T13:18:29Z2008-09-23T09:51:42Z<p>There isn't anything built in that I know of, as the int?, etc. is just syntactic sugar for Nullable<T> and isn't given special treatment beyond that. It's especially unlikely given you're attempting to obtain this from the type information of a given type. Typically that always necessitates some 'roll your own' code as a given. You would have to use Reflection to create a new Nullable type with type parameter of the input type.</p>
<p><strong>Edit:</strong> As the comments suggest actually Nullable<> <em>is</em> treated specially, and in the runtime to boot as explained in <a href="http://blogs.msdn.com/somasegar/archive/2005/08/11/450640.aspx" rel="nofollow">this article</a>.</p>