TimeUtil.cs 403 B

123456789101112131415161718192021222324
  1. //
  2. // System.Web.Util.TimeUtil
  3. //
  4. // Author(s):
  5. // Jackson Harper ([email protected])
  6. //
  7. // (C) 2003 Novell, Inc, (http://www.novell.com)
  8. //
  9. using System;
  10. namespace System.Web.Util {
  11. internal sealed class TimeUtil {
  12. private TimeUtil () { }
  13. internal static string ToUtcTimeString (DateTime dt)
  14. {
  15. return dt.ToUniversalTime ().ToString ("ddd, d MMM yyyy HH:mm:ss ") + "GMT";
  16. }
  17. }
  18. }