다음을 통해 공유


Type.BaseType 속성

현재 Type이 직접 상속된 형식을 가져옵니다.

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

구문

‘선언
Public MustOverride ReadOnly Property BaseType As Type
‘사용 방법
Dim instance As Type
Dim value As Type

value = instance.BaseType
public abstract Type BaseType { get; }
public:
virtual property Type^ BaseType {
    Type^ get () abstract;
}
/** @property */
public abstract Type get_BaseType ()
public abstract function get BaseType () : Type

속성 값

현재 Type이 직접 상속하는 Type이거나, 현재 TypeObject 클래스나 인터페이스를 나타내면 Null 참조(Visual Basic의 경우 Nothing)입니다.

설명

기본 형식은 현재 형식이 직접 상속된 형식입니다. Object는 기본 형식이 없는 유일한 형식이므로 Object의 기본 형식으로 Null 참조(Visual Basic의 경우 Nothing)가 반환됩니다.

인터페이스는 0개 이상의 기본 인터페이스에서 상속하므로 이 속성은 Type 개체가 인터페이스를 나타내는 경우 Null 참조(Visual Basic의 경우 Nothing)을 반환합니다. 기본 인터페이스는 GetInterfaces 또는 FindInterfaces로 결정될 수 있습니다.

현재 Type이 생성된 제네릭 형식을 나타내는 경우 기본 형식은 제네릭 인수를 리플렉션합니다. 예를 들어, 다음 선언을 참조하십시오.

class B<U> { }
class C<T> : B<T> { }
Class B(Of U)
End Class
Class C(Of T)
    Inherits B(Of T)
End Class
generic<typename U> ref class B { };
generic<typename T> class C : B<T> { };

생성된 형식 C<int>(Visual Basic의 경우 C(Of Integer))의 경우 BaseType 속성은 B<int>를 반환합니다.

현재 Type이 제네릭 형식 정의의 형식 매개 변수를 나타내는 경우 BaseType은 클래스 제약 조건, 즉 형식 매개 변수가 상속해야 하는 클래스를 반환합니다. 클래스 제약 조건이 없으면 BaseTypeSystem.Object를 반환합니다.

이 속성은 읽기 전용입니다.

예제

다음 예제에서는 BaseType 속성 사용에 대해 설명합니다.

Imports System

Class TestType
   
    Public Shared Sub Main()
        Dim t As Type = GetType(Integer)
        Console.WriteLine("{0} inherits from {1}.", t, t.BaseType)
    End Sub 'Main
End Class 'TestType
using System;
class TestType 
{
    public static void Main() 
    {
        Type t = typeof(int);
        Console.WriteLine("{0} inherits from {1}.", t,t.BaseType);
    }
}
using namespace System;
void main()
{
   Type^ t = int::typeid;
   Console::WriteLine( "{0} inherits from {1}.", t, t->BaseType );
}
import System.*;

class TestType
{
    public static void main(String[] args)
    {
        Type t = int.class.ToType();
        Console.WriteLine("{0} inherits from {1}.", t, t.get_BaseType());
    } //main
} //TestType

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, 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에서 지원

.NET Compact Framework

2.0, 1.0에서 지원

참고 항목

참조

Type 클래스
Type 멤버
System 네임스페이스
Object 클래스
GetInterfaces
FindInterfaces
UnderlyingSystemType
IsSubclassOf

기타 리소스

리플렉션 및 제네릭 형식