This enumeration contains all possible modifiers for a field.
Namespace: NReflect.ModifierAssembly: NReflect (in NReflect.dll) Version: 0.9.3.0 (0.9.3.0)
Syntax
[FlagsAttribute] public enum FieldModifier
Members
| Member name | Value | Description | |
|---|---|---|---|
| None | 0 | The field has no modifiers. | |
| Static | 1 | A static field does not operate on a specific instance, it belongs to the type. | |
| Readonly | 2 | A readonly field cannot be modified after the object initialization. | |
| Constant | 4 | A constant field cannot be changed runtime. | |
| Hider | 8 | The derived class member hides the base class member. | |
| Volatile | 16 | The field is volatile. |
See Also