Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
50 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 ...
2
votes
2answers
180 views

Scala fails to infer the right type arguments

Background info: I'm currently trying to set up a generic graph library that includes a few different search algorithms (I've started with Dijkstra's). I've set up a few traits to represent methods ...
2
votes
3answers
810 views

How to create List<T> instance in C# file using Reflection

HI, I have a requirement to create instance for list object at runtime using reflection. For example I have 2 classes like below, class Class1 { List<Class2> class2List; public ...
1
vote
1answer
259 views

Deserialize generic type with XStream

I'm trying to use XStream to deserialize a xml response to a class that has a generic type field. For example I have class Response class Response<T extends BaseDTO>{ int id; T field; ...
1
vote
2answers
103 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
48 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 ...
1
vote
3answers
167 views

how can I store diffrent value types in an array using c++?

I'm having trouble with some features I want to implement in my config class, I have some values with diffrent types and I want to store them in an map. formerly i used ExtendedString class to store ...
1
vote
2answers
558 views

Generic TypeOf operator?

Dim x = GetType(List(Of )) 'valid statement Dim list As New List(Of String) Now I want to see if list is a List(Of T) variable: Dim isList = TypeOf list Is List(Of ) On the last line I get a ...
1
vote
2answers
188 views

Can I have generics in a Class Property?

I have a Class that is defined as Public MustInherit Class Entity(Of T As Entity(Of T)) And various classes derived from it. I would like to have another class accept all of the derived objects ...
1
vote
2answers
325 views

Extension methods for specific generic types

I'm attempting to create various extension method for a generic type bound to specific generic type parameters in F#, but the language does not seem to be allowing me: What I want to do is something ...
0
votes
3answers
120 views

generic abstract type c++

I want to define a generic class in c++ that allow to execute my algorithm on any data. The problem is that this data can be anything (e.g. a vector of floats, a graph, etc). Is it possible to say in ...
0
votes
2answers
71 views

Proper way to get a generics type argument

The following code gets the first type parameter class declared generically in the interface SomeGenericInterface which gets concretely implemented in the class SomeClass. This code actually works. ...