Forum Discussion

balinta01's avatar
balinta01
Occasional Contributor
13 years ago

Calling Functions From .NET Assemblies - Array

Hi all! I have a C# method looking like this: public string[] Foo(int a, int b, int c) I would like to call it in TestComplete like this: var t = testCompleteHelper.Foo(0, 0, 0);  ...