14 lines
161 B
C#
14 lines
161 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace AntDesign.WPF.Converters;
|
|
|
|
public enum MathOperation
|
|
{
|
|
Add,
|
|
Divide,
|
|
Multiply,
|
|
Subtract,
|
|
Pow
|
|
}
|