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 ...
4
votes
2answers
3k views
Reflection - Getting the generic parameters from a System.Type instance
If I have the following code:
MyType<int> anInstance = new MyType<int>();
Type type = anInstance.GetType();
How can I find out which type parameter(s) "anInstance" was instantiated ...
3
votes
1answer
60 views
Creating a generic class pool where you give the generic parameter and get a generic object that used that parameter
Goal
I have a generic class GenericClass<T> and I want to pool instances.
I'm interested in seeing if I can get the syntax:
MyGenericPool = new GenericPool<GenericClass>();
// Or maybe ...
1
vote
2answers
109 views
Passing DataTable Column Type to generic method <T>
I have a method declared as such
public static T GetValidatedValue<T>(string param)
{
do something here and return object of type T...;
}
usually I call it like this var somnum = ...
1
vote
3answers
56 views
Access class property passed as generic type
I have two classes, which are passed to Serialization method and I would like to access two properties of these classes in Serialization method. The problem is that Serialization method parameter are ...