mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
15 lines
400 B
C#
15 lines
400 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.System.Plugs.System.Collections.Generic
|
|
{
|
|
[Plug(Target = typeof(EqualityComparer<>))]
|
|
public static class EqualityComparerImpl<T>
|
|
{
|
|
public static EqualityComparer<T> CreateComparer()
|
|
{
|
|
throw new Exception("Create comparer not yet implemented!");
|
|
}
|
|
}
|
|
}
|