Created
February 12, 2016 19:23
-
-
Save IEvangelist/18317f11380a1a7933f6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace IEvangelist.CSharper.Calculator | |
{ | |
public interface ICalculator<T> | |
{ | |
T Add(T leftOperand, T rightOperand); | |
T Subtract(T leftOperand, T rightOperand); | |
T Multiply(T leftOperand, T rightOperand); | |
T Divide(T leftOperand, T rightOperand); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment