C# Class CsDebugScript.CodeGen.TypeTrees.PointerTypeTree

Type tree that represents pointer type.
Inheritance: TypeTree
Exibir arquivo Open project: southpolenator/WinDbgCs

Public Methods

Method Description
GetTypeString ( bool truncateNamespace = false ) : string

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

PointerTypeTree ( TypeTree elementType )

Initializes a new instance of the PointerTypeTree class.

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

PointerTypeTree() public method

Initializes a new instance of the PointerTypeTree class.
public PointerTypeTree ( TypeTree elementType )
elementType TypeTree The element type tree.