예제 #1
0
파일: Set.cs 프로젝트: rudimk/dlr-dotnet
        bool IStructuralEquatable.Equals(object other, IEqualityComparer comparer)
        {
            ISet set = other as ISet;

            if (set != null)
            {
                return(SetHelpers.Equals(this, set, comparer));
            }
            return(false);
        }