PublicFunction.cs 582 B

123456789101112131415161718192021222324
  1. 
  2. namespace MySystem
  3. {
  4. public class PublicFunction
  5. {
  6. public static decimal NumberFormat(decimal number, int floatCount = 2)
  7. {
  8. string str = number.ToString();
  9. if (str.Contains("."))
  10. {
  11. string[] list = str.Split('.');
  12. if (list[1].Length > 2)
  13. {
  14. str = list[0] + "." + list[1].Substring(0, 2);
  15. }
  16. }
  17. else
  18. {
  19. str += ".00";
  20. }
  21. return decimal.Parse(str);
  22. }
  23. }
  24. }