다음을 통해 공유


PropertyInfo.PropertyType 속성

이 속성의 형식을 가져옵니다.

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

구문

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

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

속성 값

이 속성의 형식입니다.

설명

TypeString, Boolean, Int32 등입니다.

PropertyType 속성을 가져오려면 먼저 Type 클래스를 가져옵니다. Type에서 PropertyInfo를 가져옵니다. PropertyInfo에서 PropertyType 값을 가져옵니다.

예제

다음 예제에서는 지정된 속성의 데이터 형식을 표시합니다.

Imports System
Imports System.Reflection
Imports Microsoft.VisualBasic

Namespace MyNamespace
    Public Class Example
        Public ReadOnly Property Answer As Integer
            Get
                Return 42
            End Get
        End Property

        Public Shared Sub Main()
            ' Get a Type object for the Example type.
            Dim t As Type = GetType(MyNamespace.Example) 

            ' Get a PropertyInfo object for the Answer property.
            Dim pi As PropertyInfo = t.GetProperty("Answer")

            ' Display the type returned by the Answer property.
            Console.WriteLine("The return type of the {0}.{1} property is {2}.", _
                t.Name, pi.Name, pi.PropertyType)

        End Sub
    End Class
End Namespace
using System;
using System.Reflection;

namespace MyNamespace
{
    public class Example
    {
        public int Answer        
        {
            get
            {
                return 42;
            }
        }

        public static void Main()
        {
            // Get a Type object for the Example type.
            Type t = typeof(MyNamespace.Example);

            // Get a PropertyInfo object for the Answer property.
            PropertyInfo pi = t.GetProperty("Answer");

            // Display the type returned by the Answer property.
            Console.WriteLine("The return type of the {0}.{1} property is {2}.",
                t.Name, pi.Name, pi.PropertyType);
        }
    }
}

플랫폼

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에서 지원

참고 항목

참조

PropertyInfo 클래스
PropertyInfo 멤버
System.Reflection 네임스페이스