Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
DecimalOutput.cs
1using System;
3
5{
10 {
16 public Grade Supports(Type Object) => Object == typeof(decimal) ? Grade.Ok : Grade.NotAtAll;
17
23 public string GetString(object Value)
24 {
25 return Expression.ToString((decimal)Value);
26 }
27 }
28}
Class managing a script expression.
Definition: Expression.cs:39
static string ToString(double Value)
Converts a value to a string, that can be parsed as part of an expression.
Definition: Expression.cs:4496
Converts values of type Decimal to expression strings.
string GetString(object Value)
Gets a string representing a value.
Grade Supports(Type Object)
If the interface understands objects such as Object .
Interface for custom string output classes. Converts objects of a given type to an expression string.
Grade
Grade enumeration
Definition: Grade.cs:7