show/hide this revision's text 2 edited tags
show/hide this revision's text 1

Web service cast exception why?!

Error Cannot implicitly convert type 'string[]' to 'System.Collections.Generic.List<string>'

The above error is caused when I call a method to a web service

List<string> bob = myService.GetAllList();

Where: GetAllList =

[WebMethod]
        public List<string> GetAllList()
        {

            List<string> list ....
            return list;
        }

I have rebuilt the whole solution, updated the service references and still I get a cast exception any ideas?