Reflection: Creating an array of a type?

  • Thread starter Thread starter Axel Dahmen
  • Start date Start date
A

Axel Dahmen

Hi,

I'd like to create an array of a Type. How can I do that using reflection?

Currently I'm using the following code to create single instances:

constr=type.GetConstructor(new Type[]{...});
newObj=constr.Invoke(new object[]{...});

Now I need to create a typed array of that type to store a number of these
instances. How can I do that?

Any help is quite appreciated!

TIA,
Axel Dahmen
 
Back
Top