Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IConstant.cs
1using System;
3
4namespace Waher.Script.Model
5{
9 public interface IConstant
10 {
15 {
16 get;
17 }
18
22 string[] Aliases
23 {
24 get;
25 }
26
32 }
33}
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
string[] Aliases
Optional aliases. If there are no aliases for the constant, null is returned.
Definition: IConstant.cs:23
string ConstantName
Name of the constant
Definition: IConstant.cs:15
IElement GetValueElement(Variables Variables)
Gets the constant value element.