Webservice vs List

Webservice vs List


In webservice it is not possible to use IEnumerable classes such as List, Hashtable, Dictionary etc.,

when you try to use this classes as arguments in web method or trying to return the value in this form it will raise the above error message.
In order to resolve this issue, you are advised to use array instead of List.

Comments