AK.Symbol.Symbol C# (CSharp) Méthode

Symbol() public méthode

public Symbol ( Variable ptrToConstValue ) : System.Collections
ptrToConstValue Variable
Résultat System.Collections
        public Symbol(Variable ptrToConstValue)
        {
            type = ptrToConstValue.stringValue != null ? SymbolType.StringVariable : SymbolType.RealValue;
            variable = ptrToConstValue;
        }

Same methods

Symbol::Symbol ( CustomFunction func ) : System.Collections
Symbol::Symbol ( SymbolList subExpression ) : System.Collections
Symbol::Symbol ( SymbolType type ) : System.Collections
Symbol::Symbol ( SymbolType type, double va ) : System.Collections
Symbol::Symbol ( double value ) : System.Collections
Symbol::Symbol ( string stringValue ) : System.Collections