Implements the IsArray property and, when implemented by a derived class, determines whether the Type is an array.
[Visual Basic] MustOverride Protected Function IsArrayImpl() As Boolean [C#] protected abstract bool IsArrayImpl(); [C++] protected: virtual bool IsArrayImpl() = 0; [JScript] protected abstract function IsArrayImpl() : Boolean;
true if the Type is an array; otherwise, false.
Abstract. This method must be implemented by a derived class.
An instance of the Array class must return false because it is an object, not an array.