C# Class CsDebugScript.CodeGen.TypeTrees.UserTypeTree

Type tree that represents UserType.
Inheritance: TypeTree
Exibir arquivo Open project: southpolenator/WinDbgCs Class Usage Examples

Public Methods

Method Description
GetTypeString ( bool truncateNamespace = false ) : string

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

Protected Methods

Method Description
UserTypeTree ( UserType userType ) : System

Initializes a new instance of the UserTypeTree class.

Private Methods

Method Description
Create ( UserType userType, UserTypeFactory factory ) : UserTypeTree

Creates type tree that represents UserType base on the specified UserType and user type factory.

Method Details

GetTypeString() public method

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.
return string

UserTypeTree() protected method

Initializes a new instance of the UserTypeTree class.
protected UserTypeTree ( UserType userType ) : System
userType CsDebugScript.CodeGen.UserTypes.UserType The user type.
return System