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

Tree type that represents template type argument. Used when we know that the type is representing Generic Specialization.
Наследование: TemplateTypeTree
Показать файл Открыть проект

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

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

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

TemplateArgumentTreeType ( int templateArgumentNumber, UserType templateSpecialization, UserTypeFactory factory ) : CsDebugScript.CodeGen.UserTypes

Initializes a new instance of the TemplateArgumentTreeType 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

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

Initializes a new instance of the TemplateArgumentTreeType class.
public TemplateArgumentTreeType ( int templateArgumentNumber, UserType templateSpecialization, UserTypeFactory factory ) : CsDebugScript.CodeGen.UserTypes
templateArgumentNumber int The template type argument number.
templateSpecialization CsDebugScript.CodeGen.UserTypes.UserType The template specialization user type.
factory CsDebugScript.CodeGen.UserTypes.UserTypeFactory The user type factory.
Результат CsDebugScript.CodeGen.UserTypes