mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
29 lines
608 B
C#
29 lines
608 B
C#
using System;
|
|
using System.Globalization;
|
|
using Cosmos.IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Plugs.System.Globalization
|
|
{
|
|
[Plug(Target = typeof(CultureInfo))]
|
|
public static class CultureInfoImpl
|
|
{
|
|
public static CultureInfo get_CurrentCulture()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public static CultureInfo get_InvariantCulture()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public static int GetHashCode(CultureInfo aThis)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public static void CCtor()
|
|
{
|
|
}
|
|
}
|
|
}
|