Cosmos/source/Cosmos.System2_Plugs/System/DoubleImpl.cs
José Pedro a58e3f2fa0 g3
2017-07-30 18:38:20 +01:00

16 lines
319 B
C#

using System;
using Cosmos.Common;
using Cosmos.IL2CPU.API;
namespace Cosmos.System_Plugs.System
{
[Plug(Target = typeof (double))]
public static class DoubleImpl
{
public static string ToString(ref double aThis)
{
return StringHelper.GetNumberString(aThis);
}
}
}