Interface IField
- Namespace
- ICSharpCode.Decompiler.TypeSystem
- Assembly
- ICSharpCode.Decompiler.dll
Represents a field or constant.
public interface IField : IMember, IEntity, ICompilationProvider, INamedElement, IVariable, ISymbol
- Inherited Members
- Extension Methods
Properties
IsReadOnly
Gets whether this field is readonly.
bool IsReadOnly { get; }
Property Value
IsVolatile
Gets whether this field is volatile.
bool IsVolatile { get; }
Property Value
Name
Gets the name of the field.
string Name { get; }
Property Value
ReturnTypeIsRefReadOnly
Gets whether the field type is 'ref readonly'.
bool ReturnTypeIsRefReadOnly { get; }