vote up 1 vote down star

How can I initialize a list containing generic objects whose types can be different?

For example, I have the following:

this.Wheres = new List<Where<>>();

As you know, <> is not valid syntax. However, sometimes the type passed to Where will be a string and sometimes it will be DateTime, etc. I tried using object as the initialized type, but that doesn't work either.

flag

3 Answers

vote up 7 vote down check

Well, you haven't really given enough context (what's SqlWhere?) but normally you'd use a type parameter:

public class Foo<T>
{
   private IList<T> wheres;

   public Foo()
   {
       wheres = new List<T>();
   }
}

If you want a single collection to contain multiple unrelated types of values, however, you will have to use List<object>

link|flag
Thanks! And to answer your question, Where is a class in the query builder. – David Brown Dec 22 '08 at 15:47
vote up -1 vote down

The only way is to use the Object type, or some other class that all the objects you're storing will derive from.

The reason you won't be able to do it any other way is because the functionality you're looking for is really an example of dynamic binding, a.k.a. late binding, a.k.a. dynamic typing. This means that the actual type of a particular object is not known at compile time.

As of version 3.0 C# does not support this, even with generics. Generics provide a way to write a class or a method that relies on types which, at the time of your writing, are not known. But at the site of any use of that class or method they must be determinable at compile-time. So any place where you have a generic type in a variable definition or a method call, you must either explicitly provide a generic parameter, or it must be inferrable from the context. And every time that line of code is executed in the same context, those generic parameters must be the same.

Depending on how you are making use of the collection and the items in it, and if you have access to and the ability to modify the Where class, it may be enough to define a non-generic interface or base class providing most or all of the functionality you need, and derive Where from that, similar to how the CLR interface System.Collections.Generic.IList derives from System.Collections.IList and System.Collections.Generic.IEnumerable derives from System.Collections.IEnumerable. However, if you need to be able to determine the specific generic parameters used to create the actual instances of each of the objects in your collection, you will still likely run into problems.

link|flag
It definitely is possible. See Jon Skeet's answer. – recursive Dec 22 '08 at 15:56
Yes I see. The question gave no context. I guessed an incorrect context. John Skeet guessed the correct one. Props to him, I guess. – Turbulent Intellect Dec 22 '08 at 16:11
vote up 0 vote down
this.Wheres = new List<Object>();
link|flag
This will add (un)boxing and remove type safety. – lacop Dec 22 '08 at 16:42
How can you prevent that if the list can be composed of different object types?? – Sergio Dec 22 '08 at 16:48
This is the right way to do what the OP asked. Yes, it's not type-safe. That's not the answer's fault. – Robert Rossney Dec 22 '08 at 17:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.