コード例 #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);
        }