ComTool.cs 368 B

12345678910111213141516171819
  1. using System;
  2. namespace SiwiFms.Helper
  3. {
  4. public class ComTool
  5. {
  6. public static string GetMonth()
  7. {
  8. string month = DateTime.Now.Month.ToString();
  9. return month;
  10. }
  11. public static string GetYear()
  12. {
  13. string year = DateTime.Now.Year.ToString();
  14. return year;
  15. }
  16. }
  17. }