I have cteated one WCF service, method is
IEmployee
GetListUserInfo(List<IEmployee> UserInfo) ServiceClient serviceClient1 = new ServiceClient (); List <IEmployee> ListUser = new List<IEmployee>();
ListUser = ( List<IEmployee>)serviceClient1 .GetListUserInfo(ListUser);
i am
calling this method from Client
cannot convert from 'System.Collections.Generic.List
to 'System.Collections.Generic.List
Replies
Know the answer? Post it — somebody with the same question will find it here.