RuntimeReflectionExtensions.GetRuntimeField(Type, String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索表示指定字段的对象。
public:
[System::Runtime::CompilerServices::Extension]
static System::Reflection::FieldInfo ^ GetRuntimeField(Type ^ type, System::String ^ name);
public static System.Reflection.FieldInfo GetRuntimeField (this Type type, string name);
public static System.Reflection.FieldInfo? GetRuntimeField (this Type type, string name);
static member GetRuntimeField : Type * string -> System.Reflection.FieldInfo
<Extension()>
Public Function GetRuntimeField (type As Type, name As String) As FieldInfo
参数
- type
- Type
包含字段的类型。
- name
- String
字段的名称。
返回
表示指定字段的对象,若未找到该字段则为 null
。