Search Results for

    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

    | Edit this page 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.

    | Edit this page 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
    bool

    true if this field is static; otherwise, false.

    Extension Methods

    TypeExtensions.GetRecursiveGenericDeclaration(IField)
    AccessModifierAttribute.GetAccessModifier(IMember)
    TypeExtensions.GetDefiningAssemblyOrNull(ITypeMember)
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX