Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
162 views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...