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