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

16 lines
317 B
C#

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