mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
16 lines
No EOL
453 B
C#
16 lines
No EOL
453 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Indy.IL2CPU.Plugs;
|
|
|
|
namespace Indy.IL2CPU.IL.CustomImplementations.System {
|
|
[Plug(Target = typeof(Int32))]
|
|
public static class Int32Impl {
|
|
[PlugMethod(Signature = "System_String___System_Int32_ToString____")]
|
|
public static string ToString(ref int aThis) {
|
|
uint xValue = (uint)aThis;
|
|
return UInt32Impl.ToString(ref xValue);
|
|
}
|
|
}
|
|
} |