Show / Hide Table of Contents

    Class UnqualifiedName

    A base class for unqualified names: names that can be assigned to members, but that are not qualified by their enclosing members.

    Inheritance
    System.Object
    UnqualifiedName
    GenericName
    PointerName
    SimpleName
    Implements
    System.IEquatable<UnqualifiedName>
    Inherited Members
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Flame
    Assembly: Flame.dll
    Syntax
    public abstract class UnqualifiedName : IEquatable<UnqualifiedName>

    Methods

    | Improve this Doc View Source

    Equals(UnqualifiedName)

    Checks if this unqualified name equals another unqualified name.

    Declaration
    public abstract bool Equals(UnqualifiedName other)
    Parameters
    Type Name Description
    UnqualifiedName other

    An unqualified name to compare this unqualified name to.

    Returns
    Type Description
    System.Boolean

    true if this unqualified name equals the object; otherwise, false.

    | Improve this Doc View Source

    Equals(Object)

    Checks if this unqualified name equals an object.

    Declaration
    public override bool Equals(object obj)
    Parameters
    Type Name Description
    System.Object obj

    An object to compare this unqualified name to.

    Returns
    Type Description
    System.Boolean

    true if this unqualified name equals the object; otherwise, false.

    Overrides
    System.Object.Equals(System.Object)
    | Improve this Doc View Source

    GetHashCode()

    Gets a hash code for this unqualified name.

    Declaration
    public abstract override int GetHashCode()
    Returns
    Type Description
    System.Int32

    A hash code.

    Overrides
    System.Object.GetHashCode()
    | Improve this Doc View Source

    Qualify()

    Creates a qualified name for this unqualified name.

    Declaration
    public QualifiedName Qualify()
    Returns
    Type Description
    QualifiedName
    | Improve this Doc View Source

    Qualify(QualifiedName)

    Qualifies this unqualified name with the given qualifier.

    Declaration
    public QualifiedName Qualify(QualifiedName qualifier)
    Parameters
    Type Name Description
    QualifiedName qualifier
    Returns
    Type Description
    QualifiedName
    | Improve this Doc View Source

    Qualify(UnqualifiedName)

    Qualifies this unqualified name with the given qualifier.

    Declaration
    public QualifiedName Qualify(UnqualifiedName qualifier)
    Parameters
    Type Name Description
    UnqualifiedName qualifier
    Returns
    Type Description
    QualifiedName
    | Improve this Doc View Source

    Qualify(String)

    Qualifies this unqualified name with the given simple name.

    Declaration
    public QualifiedName Qualify(string qualifier)
    Parameters
    Type Name Description
    System.String qualifier
    Returns
    Type Description
    QualifiedName
    | Improve this Doc View Source

    ToString()

    Gets a string representation for this unqualified name.

    Declaration
    public abstract override string ToString()
    Returns
    Type Description
    System.String

    A string representation.

    Overrides
    System.Object.ToString()

    Implements

    System.IEquatable<T>
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX