RuntimeReflectionExtensions.GetRuntimeFields(Type) Metodo

Definizione

Recupera una raccolta che rappresenta tutti i campi definiti in un tipo specificato.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::IEnumerable<System::Reflection::FieldInfo ^> ^ GetRuntimeFields(Type ^ type);
public static System.Collections.Generic.IEnumerable<System.Reflection.FieldInfo> GetRuntimeFields (this Type type);
static member GetRuntimeFields : Type -> seq<System.Reflection.FieldInfo>
<Extension()>
Public Function GetRuntimeFields (type As Type) As IEnumerable(Of FieldInfo)

Parametri

type
Type

Tipo contenente i campi.

Restituisce

Raccolta di campi per il tipo specificato.

Eccezioni

type è null.

Commenti

Questo metodo restituisce tutti i campi definiti nel tipo specificato, inclusi i campi ereditati, non pubblici, di istanza e statici.

Si applica a

Vedi anche