Android Question how to send args by class?

xiaoyao

Member
Licensed User
Longtime User
class abc
public void CALLBYNAME(String subname,Class [] ClassSz,Object[] functionParams)

in java :
one class is : Class int1=int.class
how can i put agrs from b4a to java?
sub calljar()
dim obj(3) as object
dim obj2(3) as object
obj(0)=***

abc.CALLBYNAME("aaaa",obj,obj2)
end sub


how can i use this?
 
Top