Pretty basic question in C#,

class Data<T>
 {
    T obj;

    public Data()
    {
      // Allocate to obj from T here
      // Some Activator.CreateInstance() method ?
      obj =  ???
    }
 }

Not sure how to do this ? Thank you for any assistance.

link|improve this question
A follow up for someone who is interested in this.This is a major difference between C# Generics and C++ templates, we have to impose constraints on types for the compiler to recognize any properties of the type. Please read this msdn.microsoft.com/en-us/library/… – fadini Jan 10 '10 at 20:38
feedback

4 Answers

up vote 10 down vote accepted

If you want to create your own instance of T, then you need define a constraint new()

class Data<T> where T: new()
 {
    T obj;

    public Data()
    {
      obj =  new T();
    }
 }

If you want to pass in the obj then you need to allow it in the constructor

 class Data<T>
     {
        T obj;

        public Data(T val)
        {
          obj = val;
        }
     }
link|improve this answer
Answer is exactly what I was looking for too! Thanks! – deanvmc Jan 7 '10 at 23:24
feedback

YOU can use the new constraint in your generic class definition to ensure T has a default constructor you can call. Constraints allow you to inform the compiler about certain behaviors (capabilities) that the generic parameter T must adhere to.

class Data<T> where T : new()
{
    T obj;

    public Data()
    {
        obj = new T();
    }
}
link|improve this answer
feedback

Another possibility, not necessarily the right one

public class Data<T> : public T
{
    public Data()
    {
    }
}
link|improve this answer
This won't compile: you'll get the error "Cannot derive from 'T' because it is a type parameter." – itowlson Jan 7 '10 at 23:10
feedback

Your Answer

 
or
required, but never shown

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