Interface IField
Describes a field: a type member that stores some data.
Namespace: Flame
Assembly: Flame.dll
Syntax
public interface IField : ITypeMember, IMember
Properties
| Improve this Doc View SourceFieldType
Gets the type of value stored in this field.
Declaration
IType FieldType { get; }
Property Value
Type | Description |
---|---|
IType | The type of value stored in this field. |
IsStatic
Tells if this field is static. The storage for static fields is shared by the entire application, whereas the storage for instance (i.e., non-static) fields is specific to an instance of a type.
Declaration
bool IsStatic { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|