FieldFlags

Overview

Modifier flags for reflection fields.

Location

Value Description
ReadOnly This field is readonly (can only be written to from the constructor). Note that via reflection this field CAN be written to, however the optimizer will not take this in account and can choose to use an older value.
Static This field is static.
Volatile This field is volatile. The compiler will make sure it does not cache old values.