mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-26 21:42:11 +00:00
16 lines
453 B
C#
16 lines
453 B
C#
using System;
|
|
using System.Globalization;
|
|
using Cosmos.Common;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.System.Plugs.System.Globalization
|
|
{
|
|
[Plug(Target = typeof(global::System.Globalization.CultureInfo))]
|
|
public static class CultureInfoPlug
|
|
{
|
|
public static int GetHashCode(global::System.Globalization.CultureInfo aThis)
|
|
{
|
|
throw new NotImplementedException("CultureInfo.GetHashCode()");
|
|
}
|
|
}
|
|
}
|