Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#의 월(M, m) 형식 지정자

<시간/>

월 표준 형식 지정자는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다.

형식 문자열은 현재 DateTimeFormatInfo.MonthDayPattern 속성에 의해 정의됩니다.

사용자 정의 형식 문자열 -

MMMM dd

using System;
using System.Globalization;
class Demo {
   static void Main() {
      DateTime date = new DateTime(2018, 6, 11, 9, 15, 0);
      Console.WriteLine(date.ToString("m", CultureInfo.CreateSpecificCulture("en-us")));
   }
}

출력

June 11