Type class question

  • Thread starter Thread starter alexandre jenny
  • Start date Start date
A

alexandre jenny

Easy :
Type mytype = myclass.GetType();

// my isn't an array class.

How can I get easily the Type of an array of myclass using only mytype ?

Alexandre
 
Alexandre,
How can I get easily the Type of an array of myclass using only mytype ?

In v2.0 you'll be able to do

Type arrayOfMyclass = mytype.MakeArrayType();



Mattias
 
Back
Top