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

Element utility methods.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Format ( string format, ICodeElement codeElement ) : string

Gets a string representation of a code element using the specified format.

GetAttribute ( ElementAttributeType attributeType, ICodeElement codeElement ) : string

Gets the string representation of a code element attribute.

ProcessElementTree ( ICodeElement codeElement, Action action ) : void

Processes each element in a code element tree.

Приватные методы

Метод Описание
GetAttributesAttribute ( ICodeElement codeElement ) : string

Gets the Attributes attribute.

GetTypeAttribute ( ICodeElement codeElement ) : string

Gets the type attribute.

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

Format() публичный статический Метод

Gets a string representation of a code element using the specified format.
public static Format ( string format, ICodeElement codeElement ) : string
format string The format.
codeElement ICodeElement The code element.
Результат string

GetAttribute() публичный статический Метод

Gets the string representation of a code element attribute.
public static GetAttribute ( ElementAttributeType attributeType, ICodeElement codeElement ) : string
attributeType ElementAttributeType Type of the attribute.
codeElement ICodeElement The code element.
Результат string

ProcessElementTree() публичный статический Метод

Processes each element in a code element tree.
public static ProcessElementTree ( ICodeElement codeElement, Action action ) : void
codeElement ICodeElement Code element to process.
action Action Action that performs processing.
Результат void