FieldModifier EnumerationNReflect
This enumeration contains all possible modifiers for a field.

Namespace: NReflect.Modifier
Assembly: NReflect (in NReflect.dll) Version: 0.9.3.0 (0.9.3.0)
Syntax

[FlagsAttribute]
public enum FieldModifier
Members

  Member nameValueDescription
None0 The field has no modifiers.
Static1 A static field does not operate on a specific instance, it belongs to the type.
Readonly2 A readonly field cannot be modified after the object initialization.
Constant4 A constant field cannot be changed runtime.
Hider8 The derived class member hides the base class member.
Volatile16 The field is volatile.
See Also