C#의 Type.GetInterface() 메서드는 현재 Type에 의해 구현되거나 상속된 특정 인터페이스를 가져오는 데 사용됩니다.
구문
다음은 구문입니다 -
public Type GetInterface (string name); public abstract Type GetInterface (string name, bool ignoreCase);
예
이제 Type.GetInterface() 메서드를 구현하는 예를 살펴보겠습니다. -
using System; public class Demo { public static void Main(){ Type type = typeof(double); Type myInterface = type.GetInterface("IFormattable"); Console.WriteLine("Interface = "+myInterface); } }
출력
이것은 다음과 같은 출력을 생성합니다 -
Interface = System.IFormattable
예
이제 Type.GetInterface() 메서드를 구현하는 또 다른 예를 살펴보겠습니다. -
using System; public class Demo { public static void Main(){ Type type = typeof(float); Type myInterface = type.GetInterface("IFormattable",true); Console.WriteLine("Interface = "+myInterface); } }
출력
이것은 다음과 같은 출력을 생성합니다 -
Interface = System.IFormattable