Method | Description | |
---|---|---|
Accept ( ICodeElementVisitor visitor ) : void |
Allows an ICodeElementVisitor to process (or visit) this element. See the Gang of Four Visitor design pattern. |
|
CommentElement ( ) |
Creates a new comment line.
|
|
CommentElement ( CommentType commentType ) |
Creates a new comment line.
|
|
CommentElement ( string text ) |
Creates a new comment line.
|
|
CommentElement ( string text, CommentType commentType ) |
Creates a new comment line.
|
|
ToString ( ) : string |
Gets the string representation of this object.
|
Method | Description | |
---|---|---|
DoClone ( ) : |
Creates a clone of this instance.
|
public Accept ( ICodeElementVisitor visitor ) : void | ||
visitor | ICodeElementVisitor | Visitor to accept the code element. |
return | void |
public CommentElement ( CommentType commentType ) | ||
commentType | CommentType | Whether or not this is an XML comment or block comment |
public CommentElement ( string text, CommentType commentType ) | ||
text | string | Comment text |
commentType | CommentType | Whether or not this is an XML comment or block comment |