Type::GetTypeArray Method (array<Object^>^)
.NET Framework (current version)
Gets the types of the objects in the specified array.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- args
-
Type:
array<System::Object^>^
An array of objects whose types to determine.
Return Value
Type: array<System::Type^>^An array of Type objects representing the types of the corresponding elements in args.
| Exception | Condition |
|---|---|
| ArgumentNullException | args is null. -or- One or more of the elements in args is null. |
| TargetInvocationException | The class initializers are invoked and at least one throws an exception. |
The following code example demonstrates how to use the GetTypeArray method to list the types of the elements of an array.
array<Object^>^myObject = gcnew array<Object^>(3); myObject[ 0 ] = 66; myObject[ 1 ] = "puri"; myObject[ 2 ] = 33.33; // Get the array of 'Type' class objects. array<Type^>^myTypeArray = Type::GetTypeArray( myObject ); Console::WriteLine( "Full names of the 'Type' objects in the array are:" ); for ( int h = 0; h < myTypeArray->Length; h++ ) { Console::WriteLine( myTypeArray[ h ]->FullName ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: