mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
15 lines
369 B
C#
15 lines
369 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(char))]
|
|
public static class CharImpl {
|
|
public static string ToString(char aThis) {
|
|
ushort xValue = aThis;
|
|
return UInt16Impl.ToString(xValue);
|
|
}
|
|
}
|
|
}
|