C# Класс CsDebugScript.CodeGen.TypeTrees.VariableTypeTree

Type tree that represents unknown user type (and will be represented as Variable or UserType if it is base class)
Наследование: TypeTree
Показать файл Открыть проект

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

Метод Описание
GetTypeString ( bool truncateNamespace = false ) : string

Gets the string representing this type tree in C# code.

VariableTypeTree ( bool isVariable = true )

Initializes a new instance of the VariableTypeTree class.

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

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

Gets the string representing this type tree in C# code.
public GetTypeString ( bool truncateNamespace = false ) : string
truncateNamespace bool if set to true namespace will be truncated from generating type string.
Результат string

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

Initializes a new instance of the VariableTypeTree class.
public VariableTypeTree ( bool isVariable = true )
isVariable bool if set to true it will be Variable; otherwise it will be UserType.