Type.GetTypeArray Method
.NET Framework 4.5
Gets the types of the objects in the specified array.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- args
- Type: System.Object[]
An array of objects whose types to determine.
Return Value
Type: System.Type[]An array of Type objects representing the types of the corresponding elements in args.
| Exception | Condition |
|---|---|
| ArgumentNullException | 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.
Object[] myObject = new Object[3]; myObject[0] = 66; myObject[1] = "puri"; myObject[2] = 33.33; // Get the array of 'Type' class objects. 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); }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.