当前位置: 首页>>代码示例>>C#>>正文


C# DateTimeFormatInfo.CurrentInfo属性代码示例

本文整理汇总了C#中System.Globalization.DateTimeFormatInfo.CurrentInfo属性的典型用法代码示例。如果您正苦于以下问题:C# DateTimeFormatInfo.CurrentInfo属性的具体用法?C# DateTimeFormatInfo.CurrentInfo怎么用?C# DateTimeFormatInfo.CurrentInfo使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在System.Globalization.DateTimeFormatInfo的用法示例。


在下文中一共展示了DateTimeFormatInfo.CurrentInfo属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Main

//引入命名空间
using System;
using System.Globalization;

public class Example
{
   public static void Main()
   {
      var date = new DateTime(2016, 05, 28, 10, 28, 0);
      var dtfi = DateTimeFormatInfo.CurrentInfo;
      Console.WriteLine("Date and Time Formats for {0:u} in the {1} Culture:\n", 
                        date, CultureInfo.CurrentCulture.Name); 

      Console.WriteLine("{0,-22} {1,-20} {2,-30}", "Long Date Pattern", 
                        dtfi.LongDatePattern, 
                        date.ToString(dtfi.LongDatePattern));
      Console.WriteLine("{0,-22} {1,-20} {2,-30}", "Long Time Pattern", 
                        dtfi.LongTimePattern, 
                        date.ToString(dtfi.LongTimePattern));
      Console.WriteLine("{0,-22} {1,-20} {2,-30}", "Month/Day Pattern", 
                        dtfi.MonthDayPattern, 
                        date.ToString(dtfi.MonthDayPattern));
      Console.WriteLine("{0,-22} {1,-20} {2,-30}", "Short Date Pattern", 
                        dtfi.ShortDatePattern, 
                        date.ToString(dtfi.ShortDatePattern));
      Console.WriteLine("{0,-22} {1,-20} {2,-30}", "Short Time Pattern", 
                        dtfi.ShortTimePattern, 
                        date.ToString(dtfi.ShortTimePattern));
      Console.WriteLine("{0,-22} {1,-20} {2,-30}", "Year/Month Pattern", 
                        dtfi.YearMonthPattern, 
                        date.ToString(dtfi.YearMonthPattern));
   }
}
开发者ID:.NET开发者,项目名称:System.Globalization,代码行数:33,代码来源:DateTimeFormatInfo.CurrentInfo

输出:

Date and Time Formats for 2016-05-28 10:28:00Z in the en-US Culture:

Long Date Pattern      dddd, MMMM d, yyyy   Saturday, May 28, 2016
Long Time Pattern      h:mm:ss tt           10:28:00 AM
Month/Day Pattern      MMMM d               May 28
Short Date Pattern     M/d/yyyy             5/28/2016
Short Time Pattern     h:mm tt              10:28 AM
Year/Month Pattern     MMMM yyyy            May 2016

示例2: Main

//引入命名空间
using System;
using System.Globalization;

class Class1 {
  static void Main(string[] args) {
         CultureInfo MyCulture = new CultureInfo("es-ES");
         DateTimeFormatInfo Myfmt;
         DateTimeFormatInfo fmt1;

         Myfmt = MyCulture.DateTimeFormat;
         fmt1  = DateTimeFormatInfo.CurrentInfo;

         Console.WriteLine(Myfmt.GetMonthName(12));
         Console.WriteLine(fmt1.GetMonthName(12));
      }
}
开发者ID:C#程序员,项目名称:System.Globalization,代码行数:17,代码来源:DateTimeFormatInfo.CurrentInfo


注:本文中的System.Globalization.DateTimeFormatInfo.CurrentInfo属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。