Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#의 Type.GetTypeArray() 메서드

<시간/>

C#의 Type.GetTypeArray() 메서드는 지정된 배열의 개체 유형을 가져오는 데 사용됩니다.

구문

다음은 구문입니다 -

public static Type[] GetTypeArray (object[] args);

arg 인수는 유형을 결정할 객체의 배열입니다.

예시

이제 Type.GetTypeArray() 메서드를 구현하는 예를 살펴보겠습니다. -

using System;
using System.Reflection;
public class Demo {
   public static void Main(){
      Object[] obj = new Object[5];
      obj[0] = 10.20;
      obj[1] = 20;
      obj[2] = 30;
      obj[3] = 40;
      obj[4] = "tom";
      Type[] type = Type.GetTypeArray(obj);
      Console.WriteLine("Types...");
      for (int i = 0; i < type.Length; i++)
         Console.WriteLine(" {0}", type[i]);
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Types...
System.Double
System.Int32
System.Int32
System.Int32
System.String

예시

이제 Type.GetTypeArray() 메서드를 구현하는 또 다른 예를 살펴보겠습니다. -

using System;
using System.Reflection;
public class Demo {
   public static void Main(){
      Object[] obj = new Object[5];
      obj[0] = 100m;
      obj[1] = 20.98;
      obj[2] = 30.788m;
      obj[3] = 40;
      obj[4] = "jack";
      Type[] type = Type.GetTypeArray(obj);
      Console.WriteLine("Types...");
      for (int i = 0; i < type.Length; i++)
         Console.WriteLine(" {0}", type[i]);
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Types...
System.Decimal
System.Double
System.Decimal
System.Int32
System.String