Cosmos/source/Cosmos.Core.Plugs/System/Globalization/CultureInfoImpl.cs
José Pedro cd6a34daad Plugs.
Fixed part of the installer.
2017-02-05 21:36:38 +00:00

30 lines
606 B
C#

using System;
using System.Globalization;
using Cosmos.IL2CPU.Plugs;
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()
{
}
}
}