C# Class CsDebugScript.CodeGen.TypeTrees.TransformationTypeTree

Type tree that represents transformation to be applied.
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.

TransformationTypeTree ( UserTypeTransformation transformation ) : CsDebugScript.CodeGen.UserTypes

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

TransformationTypeTree() public method

Initializes a new instance of the TransformationTypeTree class.
public TransformationTypeTree ( UserTypeTransformation transformation ) : CsDebugScript.CodeGen.UserTypes
transformation CsDebugScript.CodeGen.UserTypes.UserTypeTransformation The transformation that will be applied.
return CsDebugScript.CodeGen.UserTypes