How do I convert a System.Type to its nullable version? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T09:29:19Z http://stackoverflow.com/feeds/question/108104 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/108104/how-do-i-convert-a-system-type-to-its-nullable-version 8 How do I convert a System.Type to its nullable version? AlexDuggleby 2008-09-20T13:08:11Z 2008-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&lt;int&gt; (which is the same) if t is primitive then Nullable&lt;T&gt; 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#108122 17 Answer by Alex Lyman for How do I convert a System.Type to its nullable version? Alex Lyman 2008-09-20T13:15:32Z 2008-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&lt;T&gt; wrapper if type is already nullable. type = Nullable.GetUnderlyingType(type); if (type.IsValueType) return typeof(Nullable&lt;&gt;).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&lt;T&gt;</code>.</p> http://stackoverflow.com/questions/108104/how-do-i-convert-a-system-type-to-its-nullable-version/108129#108129 1 Answer by kronoz for How do I convert a System.Type to its nullable version? kronoz 2008-09-20T13:18:29Z 2008-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&lt;T&gt; 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&lt;> <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>