C# Класс NArrange.Core.CodeElements.CommentElement

Comment line implementation.
Наследование: CodeElement, ICommentElement
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
DoClone ( ) : CodeElement

Creates a clone of this instance.

Описание методов

Accept() публичный Метод

Allows an ICodeElementVisitor to process (or visit) this element.
See the Gang of Four Visitor design pattern.
public Accept ( ICodeElementVisitor visitor ) : void
visitor ICodeElementVisitor Visitor to accept the code element.
Результат void

CommentElement() публичный Метод

Creates a new comment line.
public CommentElement ( )

CommentElement() публичный Метод

Creates a new comment line.
public CommentElement ( CommentType commentType )
commentType CommentType Whether or not this is an XML comment or block comment

CommentElement() публичный Метод

Creates a new comment line.
public CommentElement ( string text )
text string Comment text

CommentElement() публичный Метод

Creates a new comment line.
public CommentElement ( string text, CommentType commentType )
text string Comment text
commentType CommentType Whether or not this is an XML comment or block comment

DoClone() защищенный Метод

Creates a clone of this instance.
protected DoClone ( ) : CodeElement
Результат CodeElement

ToString() публичный Метод

Gets the string representation of this object.
public ToString ( ) : string
Результат string