c# Programming Glossary: returnanint
WCF will not return an int http://stackoverflow.com/questions/12964759/wcf-will-not-return-an-int public interface IMData OperationContract int ReturnAnInt OperationContract String HelloWorld Here is where I have implemented.. public String HelloWorld return Hello World public int ReturnAnInt return 5 I'm using Visual Studio and for the client I imported.. there is no problem but I get a compile error when calling ReturnAnInt. MData m new MData String helloWorld m.HelloWorld int result..
|