 | JVMBridgeBaseTClassSExecuteWithSignatureArrayT(String, String, Object) Method |
Execute the method and build the result as an array of T
Namespace: MASES.JCOBridge.C2JBridgeAssembly: C2JBridge (in C2JBridge.dll) Version: 2.6.0.250731-5810c7ee42863a60537157d5240a6436d9a79ae3
Syntaxpublic static T[] SExecuteWithSignatureArray<T>(
string methodName,
string signature,
params Object[] args
)
Public Shared Function SExecuteWithSignatureArray(Of T) (
methodName As String,
signature As String,
ParamArray args As Object()
) As T()
Parameters
- methodName String
- The method to execute
- signature String
- Method signature to use in search criteria
- args Object
- The aruments
Type Parameters
- T
- The expected result Type
Return Value
TAn array of
T
See Also