Well, you can get the element type of the array:
Type type = array.GetType().GetElementType();
(That’s not quite the same as getting the types of the items in the array – an object[] may be entirely populated with strings, for example.)
Well, you can get the element type of the array:
Type type = array.GetType().GetElementType();
(That’s not quite the same as getting the types of the items in the array – an object[] may be entirely populated with strings, for example.)