[This is preliminary documentation and is subject to change.]

CTro from type and output directory

Namespace: Tools.TotalCommanderT.PluginBuilder
Assembly: TCPluginBuilder (in TCPluginBuilder.exe) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public Generator(
	Type Type,
	string OutputDirectory
)
Visual Basic
Public Sub New ( _
	Type As Type, _
	OutputDirectory As String _
)
Visual C++
public:
Generator(
	Type^ Type, 
	String^ OutputDirectory
)
F#
new : 
        Type:Type * 
        OutputDirectory:string -> Generator
JScript
public function Generator(
	Type : Type, 
	OutputDirectory : String
)

Parameters

Type
Type: System..::..Type
Type to generate plugin for. Type must represent Total Commander plugin class - this is not checked in CTor but later.
OutputDirectory
Type: System..::..String
Output directory to generate plugin into

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionType or OutputDirectory is null

See Also