AspUnitRunner.Core.Html.HtmlElementParser.CreateCollection C# (CSharp) Метод

CreateCollection() приватный статический Метод

private static CreateCollection ( MatchCollection matches ) : IHtmlCollection
matches System.Text.RegularExpressions.MatchCollection
Результат IHtmlCollection
        private static IHtmlCollection CreateCollection(MatchCollection matches)
        {
            var elements = new List<IHtmlElement>();
            foreach (Match match in matches)
                elements.Add(CreateElement(match));
            return new HtmlCollection(elements);
        }