9 lines
232 B
C#
9 lines
232 B
C#
using System.Globalization;
|
|
|
|
namespace Intromat.Nodes.Code
|
|
{
|
|
public class FloatLiteralValue : LiteralValueBase<float>
|
|
{
|
|
public override string? PreviewValue => Value.ToString(CultureInfo.InvariantCulture);
|
|
}
|
|
} |