Click or drag to resize

JVMBridgeBaseTClassNewAndWrapsDirectTNewClass(String, Object, Object) Method

Creates a new JVM instance of className with 2 arguments and wraps it directly in TNewClass without type-safety checks.

Namespace: MASES.JCOBridge.C2JBridge
Assembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
Syntax
public static TNewClass NewAndWrapsDirect<TNewClass>(
	string className,
	Object arg0,
	Object arg1
)
where TNewClass : IJVMBridgeBase

Parameters

className  String
The Java class name in dot or slash form (e.g. java.lang.String.
arg0  Object
Constructor argument 0.
arg1  Object
Constructor argument 1.

Type Parameters

TNewClass
The bridge wrapper type to instantiate. Must expose a constructor accepting IJVMBridgeBaseInitializer. No runtime compatibility check is performed.

Return Value

TNewClass
A new TNewClass wrapping the freshly created JVM instance. No type-safety check is performed; ensure the class name matches the wrapper.
See Also