mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
23 lines
No EOL
743 B
C#
23 lines
No EOL
743 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.IL2CPU.IL.CustomImplementations.System.Globalization {
|
|
[Plug(Target=typeof(NumberFormatInfo))]
|
|
public static class NumberFormatInfoImpl {
|
|
public static NumberFormatInfo GetInstance(IFormatProvider aProvider) {
|
|
//Console.WriteLine("NumberFormatInfo.GetInstance(IFormatProvider) is not working!");
|
|
return null;
|
|
}
|
|
|
|
|
|
public static NumberFormatInfo get_CurrentInfo()
|
|
{
|
|
//Console.WriteLine("NumberFormatInfo.get_CurrentInfo is not working!");
|
|
return null;
|
|
}
|
|
}
|
|
} |