How to turn a Type instance into a generic type argument - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T16:59:47Zhttp://stackoverflow.com/feeds/question/856665http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/856665/how-to-turn-a-type-instance-into-a-generic-type-argument5How to turn a Type instance into a generic type argumentaleemb2009-05-13T08:00:56Z2009-05-13T08:54:45Z
<p>I basically have something like this:</p>
<pre><code>void Foo(Type ty)
{
var result = serializer.Deserialize<ty>(inputContent);
}
Foo(typeof(Person));
</code></pre>
<p>The <code>Deserialize<ty></code> doesn't work because it expects <code>Deserialize<Person></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#8566792Answer by Stevo3000 for How to turn a Type instance into a generic type argumentStevo30002009-05-13T08:04:17Z2009-05-13T08:04:17Z<p>Use</p>
<pre><code>void Foo<T>(){ var result = serializer.Deserialize<T>(inputContent); }
</code></pre>
<p>With the following call</p>
<pre><code>Foo<Person>();
</code></pre>
http://stackoverflow.com/questions/856665/how-to-turn-a-type-instance-into-a-generic-type-argument/856687#8566876Answer by Marc Gravell for How to turn a Type instance into a generic type argumentMarc Gravell2009-05-13T08:05:31Z2009-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<T>(SomeType inputContent) {
return serializer.Deserialize<T>(inputContent);
}
</code></pre>
http://stackoverflow.com/questions/856665/how-to-turn-a-type-instance-into-a-generic-type-argument/856689#8566891Answer by Lucero for How to turn a Type instance into a generic type argumentLucero2009-05-13T08:06:00Z2009-05-13T08:06:00Z<p>In this case, just do this:</p>
<pre><code>void Foo<ty>()
{
var result = serializer.Deserialize<ty>(inputContent);
}
Foo<Person>();
</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#8566915Answer by Anton Gogolev for How to turn a Type instance into a generic type argumentAnton Gogolev2009-05-13T08:06:39Z2009-05-13T08:06:39Z<p>If <code>ty</code> is known at compile-time, why don't just</p>
<pre><code>void Foo<T>()
{
var result = serializer.Deserialize<T>(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#8567001Answer by Rytmis for How to turn a Type instance into a generic type argumentRytmis2009-05-13T08:08:48Z2009-05-13T08:08:48Z<p>Like Lucero said,</p>
<pre><code>void Foo<ty>()
{
var result = serializer.Deserialize<ty>(inputContent);
}
Foo<Person>();
</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>