Error message 'unknown member'
I am using Monodroid and C#.Net.
I have been getting error message whenever开发者_开发技巧 I try to access a method on my web service which reads 'unknown member Invoke' and it occurs on the object[] results = this.Invoke("MethodName", new object[0]);
It seems your method does not exist...
Kimarov, you should explain a bit more showing also a bit more code.
I am almost sure the issue here is that there is no method called MethodName
in your target object and that's why your invokation is failing.
精彩评论