Click or drag to resize

JVMBridgeBaseTClassNewWithSignatureAndWrapsDirectTNewClass Method

Wraps a new instance of the TNewClass after execution of NewWithSignature(String, String, Object)

Namespace: MASES.JCOBridge.C2JBridge
Assembly: C2JBridge (in C2JBridge.dll) Version: 2.6.5.251117-542184cb2a0ea61cfe667a6bfacadf83c6adbe4d
Syntax
public static TNewClass NewWithSignatureAndWrapsDirect<TNewClass>(
	string className,
	string signature,
	params Object[] args
)
where TNewClass : IJVMBridgeBase

Parameters

className  String
The class name in the dot or slash form (example are java.lang.Boolean or java/lang/Boolean)
signature  String
The JNI constructor signature to be used
args  Object
The argument for the class constructor

Type Parameters

TNewClass
The class implementing IJVMBridgeBase

Return Value

TNewClass
The instantiated TNewClass
See Also