Hi I have been told that it is possible to call an ArrayList Method in a WebService from a console App.
[Method] " public ArrayList AuthenticateUsers(string username, string password,
string IncomingIP, decimal Pin) "
[call]
Service1 serv = new Service1();
ArrayList ar = serv.AuthenticateUsers("test", "12345","192.168.0.5", 29);
Error Cannot implicitly convert type 'Object[] to System.Collections.ArrayList'
how can i solve this?
-G