Is there a way to see some code, when writing automation with uipath? I have the following in UiPath Studio:
Is there a way to see the code that looks like this or something similar in c#
Sub Main
Dim year as Integer
year = InputBox()
If year mod 4 = 0 Then 'the rule for leapyear is a bit different.
MsgBox "It is leap"
Else
MsgBox "It is not leap"
End If
End Sub
My logic (or hope) is that if the UiPath Studio works with VB expression, then it should be possible to see the generated code