mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
21 lines
456 B
C#
21 lines
456 B
C#
using System;
|
|
using System.Globalization;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.Core.Plugs.System.Globalization
|
|
{
|
|
[Plug(Target = typeof(NumberFormatInfo))]
|
|
public static class NumberFormatInfoImpl
|
|
{
|
|
public static NumberFormatInfo GetInstance(IFormatProvider aProvider)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
|
|
public static NumberFormatInfo get_CurrentInfo()
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|