SqrtY, Factorial, CubeRoot, Square, Cube, PowY, Log, Ln, Exp, Inv, Pi, Sinh, Sin, Cosh, Cos, Tanh, Tan
7 lines
No EOL
101 B
C#
7 lines
No EOL
101 B
C#
namespace calculator.Commands;
|
|
|
|
public interface ICommand
|
|
{
|
|
void Execute();
|
|
void Undo();
|
|
} |