In this exercise you will program yet another simple calculator - this time using SOAP.
The Producer: Make a Visual Studio solution, type WCF -> WCF Service Application
Make another Visual Studio solution, type Console Application (the consumer).
Make the methods one by one: Add, Subtract, Multiply, Divide, etc.
Add another method to the service:
double Sum(double[] numbers);
Add yet another method to the service: The new method should be able to do all 4 arithmetic operations in a single method.
Hint: use out parameters.