Class UniqueTag
A base class for unique tags: identifiers for values that have a name and use referential equality instead of structural equality.
Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
  Namespace: Flame.Compiler
Assembly: Flame.Compiler.dll
Syntax
public abstract class UniqueTag
  Constructors
| Improve this Doc View SourceUniqueTag()
Creates a new unique tag.
Declaration
public UniqueTag()
  UniqueTag(String)
Creates a new unique tag.
Declaration
public UniqueTag(string name)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | name | The tag's name.  | 
      
Properties
| Improve this Doc View SourceName
Gets the (preferred) name for this tag.
Declaration
public string Name { get; }
  Property Value
| Type | Description | 
|---|---|
| System.String | The tag's name.  | 
      
Methods
| Improve this Doc View SourceToString()
Declaration
public override string ToString()
  Returns
| Type | Description | 
|---|---|
| System.String | 
Overrides
System.Object.ToString()