Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
VariablesConstant.cs
4
6{
11 {
16 {
17 }
18
22 public string ConstantName => "Variables";
23
27 public string[] Aliases => null;
28
34 {
35 return new ObjectValue(Variables);
36 }
37 }
38}
IElement GetValueElement(Variables Variables)
Gets the constant value element.
string ConstantName
Name of the constant
string[] Aliases
Optional aliases. If there are no aliases for the constant, null is returned.
Collection of variables.
Definition: Variables.cs:25
Basic interface for all types of elements.
Definition: IElement.cs:20
Base interface for constants that integrate into the script engine.
Definition: IConstant.cs:10