struct StringToken
Strings are commonly converted to tokens in engine, to save space and speed up things like comparisons. We wrap this functionality up in the StringToken struct, because we can apply a bunch of compile time optimizations to speed up the conversion.
public static StringToken Literal( string value, uint token )
This is used by codegen. String literals are replaced by this function call, which avoids having to create or lookup the string token.
public static StringToken op_Implicit( string value )
😔 No documentation found.
public bool Equals( object obj )
😔 No documentation found.
public int GetHashCode( )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public Type GetType( )
😔 No documentation found.
public StringToken( string value )
😔 No documentation found.
public StringToken( uint token )
😔 No documentation found.
public uint Value
😔 No documentation found.