In my WCF web method i have a operation contract which accepts List of string array, but when i create a proxy for this service it converts that to List of List of string.
List<string[]> to List<List<string>>.
Can anyone please tell me if there is some way i can make sure that this does not happen and my proxy also contains List
Thanks