コード例 #1
0
        private IWebFormsNode CommentNodeBuilder(Match match)
        {
            var node = new CommentNode {
                Text = match.Groups["comment"].Value
            };

            attributesReader.ReadAttributes(match, node.Attributes);
            return(node);
        }
コード例 #2
0
 private IWebFormsNode CommentNodeBuilder(Match match)
 {
     var node = new CommentNode { Text = match.Groups["comment"].Value };
     attributesReader.ReadAttributes(match, node.Attributes);
     return node;
 }