Skip to content

Instantly share code, notes, and snippets.

@IEvangelist
Created February 12, 2016 19:23
Show Gist options
  • Save IEvangelist/18317f11380a1a7933f6 to your computer and use it in GitHub Desktop.
Save IEvangelist/18317f11380a1a7933f6 to your computer and use it in GitHub Desktop.
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