Cosmos/source/Cosmos.System_Plugs/System/DoubleImpl.cs
2017-07-12 14:23:19 -04:00

16 lines
321 B
C#

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