im getting a strange error when i update a web reference within my C# solution. One random param of a function has a type... "'System.Collections.Generic.List<long>" but after the generation of the proxy stub, it converts this to long[]
so when i try to compile, im getting a type mismatch ... <error code="CS1503" message="Argument '4': cannot convert from 'System.Collections.Generic.List<long>' to 'long[]'"
and i have to change it manually everytime, does anyone know why?
I know it's just a workaround but you could use this to convert to long[] to pass into the webservice and convert back to a list inside your webservice...