Module.GetFields Method

Definition

Returns the global fields defined on the module.

Overloads

GetFields(BindingFlags)

Returns the global fields defined on the module that match the specified binding flags.

GetFields()

Returns the global fields defined on the module.

GetFields(BindingFlags)

Source:
Module.cs
Source:
Module.cs
Source:
Module.cs

Returns the global fields defined on the module that match the specified binding flags.

C#
public virtual System.Reflection.FieldInfo[] GetFields(System.Reflection.BindingFlags bindingFlags);
C#
public System.Reflection.FieldInfo[] GetFields(System.Reflection.BindingFlags bindingFlags);

Parameters

bindingFlags
BindingFlags

A bitwise combination of BindingFlags values that limit the search.

Returns

An array of type FieldInfo representing the global fields defined on the module that match the specified binding flags; if no global fields match the binding flags, an empty array is returned.

Remarks

The GetFields method does not return fields in a particular order, such as alphabetical or declaration order. Your code must not depend on the order in which fields are returned, because that order can vary.

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.5, 1.6, 2.0, 2.1

GetFields()

Source:
Module.cs
Source:
Module.cs
Source:
Module.cs

Returns the global fields defined on the module.

C#
public System.Reflection.FieldInfo[] GetFields();

Returns

An array of FieldInfo objects representing the global fields defined on the module; if there are no global fields, an empty array is returned.

Remarks

The GetFields method does not return fields in a particular order, such as alphabetical or declaration order. Your code must not depend on the order in which fields are returned, because that order can vary.

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.5, 1.6, 2.0, 2.1