using System.Collections.Generic; namespace MahTweets.Mango.Core.Behaviours { internal class TypeComparer : IEqualityComparer { public new bool Equals(object x, object y) { return x.GetType() == y.GetType(); } public int GetHashCode(object obj) { return obj.GetHashCode(); } } }