mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
16 lines
322 B
C#
16 lines
322 B
C#
using System;
|
|
|
|
using Cosmos.Common;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.System.Plugs.System
|
|
{
|
|
[Plug(Target = typeof(float))]
|
|
public static class SingleImpl
|
|
{
|
|
public static string ToString(ref float aThis)
|
|
{
|
|
return StringHelper.GetNumberString(aThis);
|
|
}
|
|
}
|
|
}
|