Forum Discussion

Ivg's avatar
Ivg
Occasional Contributor
10 years ago
Solved

How To use "Find" Method with multipe properties and values in connected application (C# Code)

Hi,

 

I am able to pass single property and value, how to pass multiple properties and values to identify the object?

 

C# arrays are not supported

 

Something like this is also not working:

 

var propNames = "text,Enabled";
var propValues = "Simulate,True";

...["Find"](propNames, propValues, 100, false);

 

 

How can I pass array as a parameter?

 

Thanks!