What activity should I use to invoke a VB.NET static method?
ie. trying to use System.IO.File.Exists > I used Invoke Method; in target object i added System.IO.File while in MethodName i wrote “Exists”. The error appears in the target object field > “File cannot be used as expression”
What @vvaidya said, but also with non-void static methods you can normally use them in expressions, f.e. in assign or if bool fileExists = System.IO.File.Exists(yourPath)