Cosmos/source/Indy.IL2CPU.IL/CustomImplementations/System/CharImpl.cs

16 lines
419 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) {
char[] xResult = new char[1];
xResult[0] = aThis;
return new String(xResult);
}
}
}