Type::HasElementTypeImpl Method
Silverlight
When overridden in a derived class, implements the HasElementType property and determines whether the current Type encompasses or refers to another type; that is, whether the current Type is an array, a pointer, or is passed by reference.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System::Booleantrue if the Type is an array, a pointer, or is passed by reference; otherwise, false.
For example, Type.GetType("Int32[]").HasElementTypeImpl returns true, but Type.GetType("Int32").HasElementTypeImpl returns false. HasElementTypeImpl also returns true for "Int32*" and "Int32&".
Note: |
|---|
In Silverlight, you cannot derive new classes from Type. |
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Community Additions
ADD
Show:
Note: