Condividi tramite


Type.ReflectedType Proprietà

Definizione

Ottiene l'oggetto classe utilizzato per ottenere questo membro.

public:
 virtual property Type ^ ReflectedType { Type ^ get(); };
public override Type? ReflectedType { get; }
public override Type ReflectedType { get; }
member this.ReflectedType : Type
Public Overrides ReadOnly Property ReflectedType As Type

Valore della proprietà

Oggetto Type tramite il quale è stato ottenuto l'oggetto Type .

Implementazioni

Esempio

In questo esempio viene visualizzato il tipo riflesso di una classe nidificata.

using System;
using System.Reflection;

public abstract class MyClassA
{

    public abstract class MyClassB
    {
    }

    public static void Main(string[] args)
    {
        Console.WriteLine("Reflected type of MyClassB is {0}",
            typeof(MyClassB).ReflectedType); //outputs MyClassA, the enclosing class
    }
}
module MyModule =
    type [<AbstractClass>] MyClass() = class end

    printfn $"Reflected type of MyClass is {typeof<MyClass>.ReflectedType}" // Outputs MyModule, the enclosing module.
Imports System.Reflection

Public MustInherit Class MyClassA

    Public MustInherit Class MyClassB

    End Class

    Public Shared Sub Main()
        Console.WriteLine("Reflected type of MyClassB is {0}", _
           GetType(MyClassB).ReflectedType)
    'Outputs MyClassA, the enclosing type.
    End Sub
End Class

Commenti

Per Type gli oggetti, il valore di questa proprietà è sempre uguale al valore della DeclaringType proprietà .

Si applica a

Vedi anche