| Author: Anuraj 25 Oct 2009 | Member Level: Diamond | Rating:  Points: 2 |
Try creating a Class, which inherits List<String> and mark it as serializable.
Thanks Anuraj THIS POSTING IS PROVIDED "AS IS" WITH NO WARRANTIES, AND CONFERS NO RIGHTS. BEWARE OF BUGS IN THE ABOVE CODE; I HAVE ONLY PROVED IT CORRECT, NOT TRIED IT. dotnetthoghts
|
| Author: Naganathan 27 Oct 2009 | Member Level: Bronze | Rating:  Points: 2 |
you can specify serializaable in attributes .
Regards, Naganathan.S
|
| Author: Hari 03 Nov 2009 | Member Level: Gold | Rating:  Points: 2 |
Hi,
MArk your service class with [ServiceKnownType(typeof(List<string>))]
like this [ServiceKnownType(typeof(List<string>))] public class Service1:IService1 { }
|