Hi,
I need to invoke c sharp code in uipath
Now, my c sharp code contains 2 classes where one class has main method which creates object of the other class and calls the methods of other class
Can anyone help how can I invoke this c sharp code
Hi,
I need to invoke c sharp code in uipath
Now, my c sharp code contains 2 classes where one class has main method which creates object of the other class and calls the methods of other class
Can anyone help how can I invoke this c sharp code
Hi @shreyaR,
Invoking code in UiPath means that your code will use namespaces and libraries which are part of the project itself. So starting from namespaces you need to add them in Imports
tab of the Studio opened project and remove that part from the code. Then if your code includes some input/output variables/argument you need to define them in Arguments collection inside properties tab. Finally you code needs to be re-designed a little to remove unnecessary elements.
Here is example of potential code: