Tagged Questions

7
votes
5answers
1k views

How to turn a Type instance into a generic type argument

I basically have something like this: void Foo(Type ty) { var result = serializer.Deserialize<ty>(inputContent); } Foo(typeof(Person)); The Deserialize<ty> doesn't work because it ...