Cosmos/source/Cosmos.System.Plugs/System/Collections/Generic/EqualityComparerImpl.cs
2016-06-25 10:52:50 -04:00

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!");
}
}
}