 | JVMBridgeBaseTClassSExecuteArrayTArrayType(IJavaType, String, Object) Method |
Statically executes the method identified by methodName on
clazz and returns the result as an array of TArrayType.
Namespace: MASES.JCOBridge.C2JBridgeAssembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
Syntaxpublic static TArrayType[] SExecuteArray<TArrayType>(
IJavaType clazz,
string methodName,
params Object[] args
)
Public Shared Function SExecuteArray(Of TArrayType) (
clazz As IJavaType,
methodName As String,
ParamArray args As Object()
) As TArrayType()
Parameters
- clazz IJavaType
- The IJavaType on which the static method shall be executed.
- methodName String
- The name of the static method to execute.
- args Object
- The arguments to pass to the method.
Type Parameters
- TArrayType
- The expected element type of the returned array.
Can be a primitive type, a IJVMBridgeBase implementation, or
any other type compatible with the JVM array element type.
Return Value
TArrayTypeAn array of
TArrayType, or
if the method returns
or an empty JVM array reference.
See Also