Hi ,
I have cteated one WCF service, method is

IEmployee

GetListUserInfo(List<IEmployee> UserInfo)

i am calling this method from Client

ServiceClient

serviceClient1 = new ServiceClient ();

List

<IEmployee> ListUser = new List<IEmployee>();

ListUser = (

List<IEmployee>)serviceClient1 .GetListUserInfo(ListUser);

List<IEmployee>)serviceClient1 .GetListUserInfo(ListUser);

// here i am geting following error


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.