How to turn a Type instance into a generic type argument - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T16:59:47Z http://stackoverflow.com/feeds/question/856665 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/856665/how-to-turn-a-type-instance-into-a-generic-type-argument 5 How to turn a Type instance into a generic type argument aleemb 2009-05-13T08:00:56Z 2009-05-13T08:54:45Z <p>I basically have something like this:</p> <pre><code>void Foo(Type ty) { var result = serializer.Deserialize&lt;ty&gt;(inputContent); } Foo(typeof(Person)); </code></pre> <p>The <code>Deserialize&lt;ty&gt;</code> doesn't work because it expects <code>Deserialize&lt;Person&gt;</code> instead. How do I work around this?</p> <p>I'd also like to understand how generics work and why it won't accept <code>ty</code> which is <code>typeof(Person)</code>.</p> <p>EDIT: I ought to have mentioned that this is a contrived example. I cannot actually change the signature of the function because it implements an interface.</p> <p>EDIT: serializer is a JavascriptSerializer and implemented as an action filter here. It is called thusly:</p> <pre><code>[JsonFilter(Param="test", JsonDataType=typeof(Person))] </code></pre> <h2>Solution</h2> <p>Based on Marc and Anton's answers:</p> <pre><code>var result = typeof(JavaScriptSerializer).GetMethod("Deserialize") .MakeGenericMethod(JsonDataType) .Invoke(serializer, new object[] { inputContent }); </code></pre> http://stackoverflow.com/questions/856665/how-to-turn-a-type-instance-into-a-generic-type-argument/856679#856679 2 Answer by Stevo3000 for How to turn a Type instance into a generic type argument Stevo3000 2009-05-13T08:04:17Z 2009-05-13T08:04:17Z <p>Use</p> <pre><code>void Foo&lt;T&gt;(){ var result = serializer.Deserialize&lt;T&gt;(inputContent); } </code></pre> <p>With the following call</p> <pre><code>Foo&lt;Person&gt;(); </code></pre> http://stackoverflow.com/questions/856665/how-to-turn-a-type-instance-into-a-generic-type-argument/856687#856687 6 Answer by Marc Gravell for How to turn a Type instance into a generic type argument Marc Gravell 2009-05-13T08:05:31Z 2009-05-13T08:05:31Z <p>Which serializer is that? If you only know the <code>Type</code> at runtime (not compile time), and it doesn't have a non-generic API, then you might have to use <code>MakeGenericMethod</code>:</p> <pre><code>void Foo(Type ty) { object result = typeof(ContainingClass).GetMethod("Bar"). .MakeGenericMethod(ty).Invoke(null, new object[] {inputContent}); } public static T Bar&lt;T&gt;(SomeType inputContent) { return serializer.Deserialize&lt;T&gt;(inputContent); } </code></pre> http://stackoverflow.com/questions/856665/how-to-turn-a-type-instance-into-a-generic-type-argument/856689#856689 1 Answer by Lucero for How to turn a Type instance into a generic type argument Lucero 2009-05-13T08:06:00Z 2009-05-13T08:06:00Z <p>In this case, just do this:</p> <pre><code>void Foo&lt;ty&gt;() { var result = serializer.Deserialize&lt;ty&gt;(inputContent); } Foo&lt;Person&gt;(); </code></pre> <p>Otherwise, you need to call the generic method late-bound, since you have to get the correct generic method for it first (it is not known at compile time). Have a look at the <a href="http://msdn.microsoft.com/de-de/library/system.reflection.methodinfo.makegenericmethod%28VS.95%29.aspx" rel="nofollow">MethodInfo.MakeGenericMethod</a> method.</p> http://stackoverflow.com/questions/856665/how-to-turn-a-type-instance-into-a-generic-type-argument/856691#856691 5 Answer by Anton Gogolev for How to turn a Type instance into a generic type argument Anton Gogolev 2009-05-13T08:06:39Z 2009-05-13T08:06:39Z <p>If <code>ty</code> is known at compile-time, why don't just</p> <pre><code>void Foo&lt;T&gt;() { var result = serializer.Deserialize&lt;T&gt;(inputContext); } </code></pre> <p>Otherwise, </p> <pre><code>MethodInfo genericDeserializeMethod = serializer.GetType().GetMethod("Deserialize"); MethodInfo closedDeserializeMethod = genericDeserializeMethod.MakeGenericMethod(ty); closedDeserializeMethod.Invoke(serializer, new object[] { inputContext }); </code></pre> http://stackoverflow.com/questions/856665/how-to-turn-a-type-instance-into-a-generic-type-argument/856700#856700 1 Answer by Rytmis for How to turn a Type instance into a generic type argument Rytmis 2009-05-13T08:08:48Z 2009-05-13T08:08:48Z <p>Like Lucero said,</p> <pre><code>void Foo&lt;ty&gt;() { var result = serializer.Deserialize&lt;ty&gt;(inputContent); } Foo&lt;Person&gt;(); </code></pre> <p>typeof(Person) is not the same thing as Person. Person is a compile-time type, whereas typeof(Person) is an expression that <em>returns a Type instance representing the runtime type information of Person</em>.</p>