I have WCF service which returns list of objects like this..
List<Orders> GetOrders(int zone, string startDate)
Windows forms application should consume the result into List<receivedOrders) by calling GetOrders(int zone, string startDate)
Please note WCF service returns Orders class and Client application populate that to receivedOrders. Both Orders & reurnOrders are similar i men contain (ID,Name,Date)
How to serialize this in WCF service and Desirialize/populate in client using DataContractSerializer etc.. Any clear steps will be much appreciated ...
Go to the complete details ...