mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
17 lines
470 B
C#
17 lines
470 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 {
|
|
//[PlugMethod(Signature = "System_String___System_Char_ToString____")]
|
|
public static string ToString(ref char aThis) {
|
|
char[] xResult = new char[1];
|
|
xResult[0] = aThis;
|
|
return new String(xResult);
|
|
}
|
|
}
|
|
}
|