I have web service that should receive param ArrayList
[WebMethod]
public void SelectPatches(ArrayList selectedPatches){}
But when I call this method from client Visual Studio return error:
Cannot convert from 'System.Collections.ArrayList' to 'object[]'
Is it possible to pass parameter with type ArrayList to Web Service?