TypeBuilder.GetFields(BindingFlags) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回此类型声明的公共和非公共字段。
public:
override cli::array <System::Reflection::FieldInfo ^> ^ GetFields(System::Reflection::BindingFlags bindingAttr);
public override System.Reflection.FieldInfo[] GetFields (System.Reflection.BindingFlags bindingAttr);
override this.GetFields : System.Reflection.BindingFlags -> System.Reflection.FieldInfo[]
Public Overrides Function GetFields (bindingAttr As BindingFlags) As FieldInfo()
参数
- bindingAttr
- BindingFlags
这必须是来自 BindingFlags 的位标志:InvokeMethod
、NonPublic
等等。
返回
返回 FieldInfo 对象的数组,表示此类型声明或继承的公共和非公共字段。 按照指定,如果没有字段,则返回空数组。
例外
不会为不完整类型实现此方法。
注解
方法 GetFields 不按特定顺序(如字母顺序或声明顺序)返回字段。 代码不得依赖于返回字段的顺序,因为该顺序可能会有所不同。
使用 Type.GetType 或 Assembly.GetType 检索类型,并在检索的类型上使用反射。