I want to debug a WCF service locally in Visual Studio. The called function looks like this:
public void PerformAction(Directory[] dirs) {
....
}
Directory is a class with some properties. In the WCF test client I want to test the function but how can I set the input values for the Directory array?
Taking the default WCF template as an example, I made the following definition.
First enter the length of the array, then select the array type, and finally enter the values of the individual elements one by one.

Wish it is useful to you, feel free to let me know if there is anything I can help with.