Question: How would i go about finishing this code for these math functions to work properly in Visual Studio public class MathFunctions { private log4net.ILog logger

How would i go about finishing this code for these math functions to work properly in Visual Studio

public class MathFunctions { private log4net.ILog logger = log4net.LogManager.GetLogger(typeof(MathFunctions)); internal static readonly string ErrorMessage = "Error";

public string Add(string input1, string input2) { // TODO: Implement throw new NotImplementedException(); }

public string Subtract(string input1, string input2) { // TODO: Implement throw new NotImplementedException(); }

public string Multiply(string input1, string input2) { // TODO: Implement throw new NotImplementedException(); }

public string Divide(string input1, string input2) { // TODO: Implement throw new NotImplementedException(); }

public string Modulus(string input1, string input2) { // TODO: Implement throw new NotImplementedException(); }

public string Power(string input1, string input2) { // TODO: Implement throw new NotImplementedException(); }

}

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!