R
Ranier Dunno
Hi,
I'd like to create typed arrays during runtime, sort of
like this:
Array vals = Array.CreateInstance(objType, noElements);
The problem is that objType will not be a "base" type
like Double or Int32, but rather an array type, like
Double[] or Int32[]. Is there any way of creating, say,
an array of doubles from the double[] system type?
I'd like to create typed arrays during runtime, sort of
like this:
Array vals = Array.CreateInstance(objType, noElements);
The problem is that objType will not be a "base" type
like Double or Int32, but rather an array type, like
Double[] or Int32[]. Is there any way of creating, say,
an array of doubles from the double[] system type?