Another interface in Beta 1 that I have some questions about is IComparer<T>. In Beta 1, this interface looks like: interface IComparer<T> { int GetHashCode(T t); bool Equals(T t1, T t2); int Compare(T t1, T t2); } The problem with this interface
Read More...