Show / Hide Table of Contents

    Interface IField

    Describes a field: a type member that stores some data.

    Inherited Members
    ITypeMember.ParentType
    IMember.Name
    IMember.FullName
    IMember.Attributes
    Namespace: Flame
    Assembly: Flame.dll
    Syntax
    public interface IField : ITypeMember, IMember

    Properties

    | Improve this Doc View Source

    FieldType

    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.

    | Improve this Doc View Source

    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

    true if this field is static; otherwise, false.

    Extension Methods

    TypeExtensions.GetDefiningAssemblyOrNull(ITypeMember)
    TypeExtensions.GetRecursiveGenericDeclaration(IField)
    AccessModifierAttribute.GetAccessModifier(IMember)
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX