示例#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);
        }