mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-25 21:12:04 +00:00
29 lines
745 B
C#
29 lines
745 B
C#
using System;
|
|
using System.Globalization;
|
|
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Plugs.System.Globalization
|
|
{
|
|
[Plug(Target = typeof(CultureInfo))]
|
|
public static class CultureInfoImpl
|
|
{
|
|
public static void CCtor()
|
|
{
|
|
}
|
|
|
|
public static CultureInfo get_CurrentCulture() => CultureInfo.InvariantCulture;
|
|
|
|
public static int GetHashCode(CultureInfo aThis)
|
|
{
|
|
throw new NotImplementedException("CultureInfo.GetHashCode()");
|
|
}
|
|
|
|
public static bool Equals(CultureInfo aThis, object value)
|
|
{
|
|
throw new NotImplementedException("CultureInfo.Equals()");
|
|
}
|
|
|
|
public static CultureInfo GetCultureInfo(string name) => null;
|
|
}
|
|
}
|