mixmax
mixmax

Reputation:

Object class as array

like every class in .net does Arrays also inherit Object

Upvotes: 1

Views: 499

Answers (1)

SLaks
SLaks

Reputation: 887365

Yes, they do.

Arrays are instances of generic types that inherit the abstract Array class.

MSDN discusses this

Upvotes: 2

Related Questions