Update InputInterpreter.cs
This commit is contained in:
parent
5f7b862d5e
commit
ead706e38b
1 changed files with 29 additions and 3 deletions
|
@ -45,11 +45,37 @@ namespace CSMic
|
||||||
|
|
||||||
#region Properties
|
#region Properties
|
||||||
|
|
||||||
public decimal NumericValue => numericValue;
|
public decimal NumericValue
|
||||||
public string StringValue => stringValue;
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this.numericValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public TimeSpan LastExecutionTime => lastExecutionTime;
|
public string StringValue
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this.stringValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public TimeSpan LastExecutionTime
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this.lastExecutionTime;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public IEnumerable<Variable> Variables
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Output Plumbing
|
#region Output Plumbing
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue