Rubberduck.Parsing.Nodes.CommentNode.CommentNode C# (CSharp) Method

CommentNode() public method

Creates a new comment node.
public CommentNode ( string comment, string marker, QualifiedSelection qualifiedSelection ) : Rubberduck.VBEditor
comment string The comment line text, without the comment marker.
marker string
qualifiedSelection Rubberduck.VBEditor.QualifiedSelection The information required to locate and select this node in its VBE code pane.
return Rubberduck.VBEditor
        public CommentNode(string comment, string marker, QualifiedSelection qualifiedSelection)
        {
            _comment = comment;
            _marker = marker;
            _qualifiedSelection = qualifiedSelection;
        }