PublicFunction.cs 747 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Data;
  5. using System.Text.RegularExpressions;
  6. using MySystem.PxcModels;
  7. using Library;
  8. namespace MySystem
  9. {
  10. public class PublicFunction
  11. {
  12. public static decimal NumberFormat(decimal number, int floatCount = 2)
  13. {
  14. string str = number.ToString();
  15. if (str.Contains("."))
  16. {
  17. string[] list = str.Split('.');
  18. if (list[1].Length > 2)
  19. {
  20. str = list[0] + "." + list[1].Substring(0, 2);
  21. }
  22. }
  23. else
  24. {
  25. str += ".00";
  26. }
  27. return decimal.Parse(str);
  28. }
  29. }
  30. }