GetType() on Array item?

匿名 (未验证) 提交于 2019-12-03 01:49: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?

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

回答1:

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



回答2:

Maybe Type.GetElementType() is what you need.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!