Cosmos/source/Indy.IL2CPU/IL/CustomImplementations/System/SingleImpl.cs
kudzu_cp 3e05e23892
2008-09-21 23:15:22 +00:00

17 lines
424 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(Single))]
public static class SingleImpl
{
public static string ToString(ref uint aThis)
{
return "this is a single, it needs converting to a string";
}
}
}