#if !LOCALTEST using System; using System.Collections.Generic; using System.Text; namespace System.Collections.Generic { public interface IEqualityComparer<T> { bool Equals(T x, T y); int GetHashCode(T obj); } } #endif