C++ wrapper class for C# class calling a web service
问题 So, I've written a web service in c#, which has a method for signing a hash. This web service is a WCF Service application. Then, I've created a c# Console application where I've written a function to consume this web service. The declaration of the function which calls the web service is that: class Program { public byte[] callWS(string alias, byte[] myHash,string myPassword) { IhashSignSVCClient client = new IhashSignSVCClient(); byte[] signedData= client.SignandReturn(alias, myhash,