12345678910111213141516171819 |
- using System.Globalization;
- namespace PlcSiemens.Core.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;
- }
- }
- }
- }
|