Last active
February 12, 2016 20:40
-
-
Save IEvangelist/f65ec3726727168b48c2 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 class Int32Calculator : ICalculator<int> | |
{ | |
public int Add(int leftOperand, int rightOperand) => leftOperand + rightOperand; | |
public int Divide(int leftOperand, int rightOperand) => leftOperand / rightOperand; | |
public int Multiply(int leftOperand, int rightOperand) => leftOperand * rightOperand; | |
public int Subtract(int leftOperand, int rightOperand) => leftOperand - rightOperand; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment