mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
- Removed GetHashCode() methods that were not really needed - Plugged class CultureInfo for GetHashCode() - Plugged class Runtime.CompilerServices for GetHashCode() - Plugged class RuntimeTypeImpl for GetHashCode() - Fixed tests that were failing using true .NET GetHashCode() - Fixed IL Interpreter added SHIFT, AND, XOR... for sbyte and short
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()");
|
|
}
|
|
}
|
|
}
|