mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
31 lines
821 B
C#
31 lines
821 B
C#
using Cosmos.Debug.Kernel;
|
|
using Cosmos.System2_Plugs.System.Text;
|
|
using IL2CPU.API.Attribs;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.System2_Plugs.System.Globalization
|
|
{
|
|
[Plug(TargetName = "System.Globalization.EncodingTable")]
|
|
public static class EncodingTableImpl
|
|
{
|
|
/*
|
|
* This is Table is pratically empty in Net Core, but instatiate a Dictionary that Cosmos yet does not
|
|
* support when it will support them probably this plug will be not needed anymore.
|
|
*/
|
|
public static void Cctor()
|
|
{
|
|
}
|
|
|
|
public static object GetCodePageDataItem(int codepage)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public static int GetCodePageFromName(string name)
|
|
{
|
|
return -1;
|
|
}
|
|
}
|
|
}
|