다음을 통해 공유


Type.GetTypeArray 메서드

지정된 배열의 개체 형식을 가져옵니다.

네임스페이스: System
어셈블리: mscorlib(mscorlib.dll)

구문

‘선언
Public Shared Function GetTypeArray ( _
    args As Object() _
) As Type()
‘사용 방법
Dim args As Object()
Dim returnValue As Type()

returnValue = Type.GetTypeArray(args)
public static Type[] GetTypeArray (
    Object[] args
)
public:
static array<Type^>^ GetTypeArray (
    array<Object^>^ args
)
public static Type[] GetTypeArray (
    Object[] args
)
public static function GetTypeArray (
    args : Object[]
) : Type[]

매개 변수

  • args
    형식을 확인할 개체의 배열입니다.

반환 값

args의 해당 요소에 대한 형식을 나타내는 Type 개체의 배열입니다.

예외

예외 형식 조건

ArgumentNullException

args가 Null 참조(Visual Basic의 경우 Nothing)인 경우

TargetInvocationException

클래스 이니셜라이저가 호출되며 예외가 적어도 한 번은 throw되는 경우

설명

요청된 형식이 public이 아니고 현재 어셈블리 외부의 public이 아닌 개체에 대한 ReflectionPermission이 호출자에게 없는 경우, 이 메서드는 결과 배열에서 해당하는 요소에 대해 Null 참조(Visual Basic의 경우 Nothing)를 반환합니다.

예제

Dim myObject(2) As Object
myObject(0) = 66
myObject(1) = "puri"
myObject(2) = 33.33
' Get the array of 'Type' class objects.
Dim myTypeArray As Type() = Type.GetTypeArray(myObject)
Console.WriteLine("Full names of the 'Type' objects in the array are:")
Dim h As Integer
For h = 0 To myTypeArray.Length - 1
   Console.WriteLine(myTypeArray(h).FullName)
Next h
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);
}
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 );

}
Object myObject[] = new Object[3];
myObject.set_Item(0, (System.Int32)66);
myObject.set_Item(1, "puri");
myObject.set_Item(2, (System.Double)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.get_Length(); h++) {
    Console.WriteLine(myTypeArray[h].get_FullName());
}

플랫폼

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

참고 항목

참조

Type 클래스
Type 멤버
System 네임스페이스
ReflectionPermission