mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
19 lines
No EOL
603 B
C#
19 lines
No EOL
603 B
C#
using System;
|
|
using System.Globalization;
|
|
|
|
namespace Cosmos.IL2CPU.Plugs.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;
|
|
}
|
|
}
|
|
} |