CombinerFunctions.cs 227 B

12345678910111213141516
  1. namespace InABox.WPF
  2. {
  3. public enum NumericCalculatorType
  4. {
  5. Sum,
  6. Product,
  7. Subtraction,
  8. Maximum,
  9. Minimum
  10. }
  11. public enum StringCalculatorType
  12. {
  13. Append
  14. }
  15. }