mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
17 lines
428 B
C#
17 lines
428 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.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";
|
|
}
|
|
}
|
|
|
|
}
|