You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
396 B

  1. using System;
  2. using System.Globalization;
  3. namespace SUISS.Core.Utilities
  4. {
  5. public static class DateTimeExtensionsWS
  6. {
  7. public static DateTime NewDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, Calendar calendar, DateTimeKind kind)
  8. {
  9. return new DateTime(year, month, day, hour, minute, second, millisecond, calendar, kind);
  10. }
  11. }
  12. }