As developers know we cant return List with web services, we can only return lists with converting them to .ToArray(); I\'ve searched some, but cant ge
It depends on the interoperability settings of the webservice, an object like int[] is easier to understand for a non .NET language then List. If you develop your web service under WCF, List is supported as a return type.