Cosmos/source/Cosmos.Core_Plugs/System/Globalization/CultureInfoImpl.cs
fanoI c50b581d91 More work on Encoding
- Resolved problem with UTF8Enconding.BaseName property
- Started work to plug Hashtable to make the Encoding / Decoding more efficient
2018-01-10 20:29:05 +01:00

35 lines
788 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 CultureInfo get_CurrentCulture()
{
return null;
}
public static CultureInfo get_InvariantCulture()
{
return null;
}
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 void CCtor()
{
}
}
}