-
Using return in Apex
While returning in an Apex class, can we call the method from another class directly in it ?
For eg-
return abc.xyz(a);
where abc is another class and xyz is method in that class with ‘a‘ as a parameter. Is this correct ?
Log In to reply.