Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/BaseMetaComparer.cs

21 lines
No EOL
501 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EcmaCil
{
//public class BaseMetaComparer<T>: IEqualityComparer<T> where T: BaseMeta
//{
// public static readonly BaseMetaComparer<T> Instance = new BaseMetaComparer<T>();
// public bool Equals(T x, T y)
// {
// return x.MetaId == y.MetaId;
// }
// public int GetHashCode(T obj)
// {
// return obj.MetaId;
// }
//}
}