开发者

GetType() on Array item?

开发者 https://www.devze.com 2022-12-16 22:02 出处:网络
I have an initialised array that may contain no items. Lets call it a, Calling GetType() on a will obviously return a type of Array. Is it possible to get the type of the items the array contains?

I have an initialised array that may contain no items.

Lets call it a,

Calling GetType() on a will obviously return a type of Array. Is it possible to get the type of the items the array contains?

开发者_Python百科Obviously a[0].GetType() would work, but then the array could be empty and cause a null reference exception.


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.)


Maybe Type.GetElementType() is what you need.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号