Table of Contents

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

bool

IsVolatile

Gets whether this field is volatile.

bool IsVolatile { get; }

Property Value

bool

Name

Gets the name of the field.

string Name { get; }

Property Value

string

ReturnTypeIsRefReadOnly

Gets whether the field type is 'ref readonly'.

bool ReturnTypeIsRefReadOnly { get; }

Property Value

bool