コード例 #1
0
ファイル: UrlNode.cs プロジェクト: WebCentrum/WebPackUI
        public bool IntersectsWith(UrlNode urlTree)
        {
            if (urlTree == null)
            {
                throw new ArgumentNullException("urlTrees");
            }

            return DescendantsAndSelf()
                .Intersect(urlTree.DescendantsAndSelf(), comparer)
                .Any();
        }