Hi All, I have a method in WCF public Boolean methodA (List <zyz> arg1, string arg2{ }
From client I need to call methodA like this methodA(Ienumerable<lmn>,string1) ...when I'm trying to pass like this getting error unknown method...
Also When I changed the method to WCF public Boolean methodA (IEnumerable<zyz> arg1, string arg2) and tried calling by methodA(Ienumerable<lmn>,string1)
getting the same unknown method error
Any input will be helpful
Go to the complete details ...