mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
23 lines
440 B
C#
23 lines
440 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.Core.Plugs.System
|
|
{
|
|
[Plug(Target = typeof(global::System.Globalization.CharUnicodeInfo))]
|
|
public static class CharUnicodeInfoImpl
|
|
{
|
|
public static void Cctor()
|
|
{
|
|
|
|
}
|
|
|
|
public static bool InitTable()
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|