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
|
||||
|
||||
public decimal NumericValue => numericValue;
|
||||
public string StringValue => stringValue;
|
||||
public decimal NumericValue
|
||||
{
|
||||
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
|
||||
|
||||
#region Output Plumbing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue