mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
25 lines
No EOL
611 B
C#
25 lines
No EOL
611 B
C#
using System.Globalization;
|
|
|
|
namespace Cosmos.IL2CPU.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;
|
|
}
|
|
|
|
//[PlugMethod(Signature = "System_Void__System_Globalization_CultureInfo__cctor__")]
|
|
public static void CCtor()
|
|
{
|
|
}
|
|
|
|
public static bool Equals(CultureInfo aThis, object aThat)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
} |