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

C#의 Type.GetTypeFromHandle() 메서드

<시간/>

C#의 Type.GetTypeFromHandle() 메서드는 지정된 형식 핸들에서 참조하는 형식을 가져오는 데 사용됩니다.

구문

다음은 구문입니다 -

public static Type GetTypeFromHandle (RuntimeTypeHandle handle);

위의 핸들 매개변수는 해당 유형을 참조하는 객체입니다.

예시

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

using System;
public class Demo {
   public static void Main(){
      Type type1 = typeof(short);
      RuntimeTypeHandle typeHandle = Type.GetTypeHandle(type1);
      Type type = Type.GetTypeFromHandle(typeHandle);
      Console.WriteLine("Attributes = " + type.Attributes);
   }
}

출력

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

Attributes = AutoLayout, AnsiClass, Class, Serializable, BeforeFieldInit

예시

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

using System;
public class Demo {
   public static void Main(){
      Type type1 = typeof(System.Type);
      RuntimeTypeHandle typeHandle = Type.GetTypeHandle(type1);
      Type type = Type.GetTypeFromHandle(typeHandle);
      Console.WriteLine("Attributes = " + type.Attributes);
   }
}

출력

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

Attributes = AutoLayout, AnsiClass, Class, Serializable, BeforeFieldInit