1234567891011121314151617181920 |
- using System;
- using System.Globalization;
- namespace Houdar.Core.Util.Common
- {
- //获取表示当前线程使用的区域性的 System.Globalization.CultureInfo。
- public static class Constants
- {
-
- public static readonly DateTime ProductionDate = new DateTime(2008, 1, 11);
- //获取表示当前线程使用的区域性的 System.Globalization.CultureInfo。
- public static CultureInfo CurrentCulture
- {
- get
- {
- return CultureInfo.CurrentCulture;
- }
- }
- }
- }
|