[C#] 13일차 - 88. DateTime FormatC#/C#200제2021. 2. 9. 18:55
Table of Contents
사용자 지정 형식
DateTime date1 = DateTime.Today;
Console.WriteLine(date1.ToString("yyyy년 MM월 dd일"));
Console.WriteLine(string.Format("{0,yyyy년 MM월 dd일"}, today));
// 출력 : 2021년 02월 09일
국가별 지정 형식
Console.WriteLine(date1.ToString("MMMM dd, yyyy ddd", CultureInfo.CreateSpecificCulture("en-US")));
Console.WriteLine(date1.ToString("MMMM dd, yyyy ddd", CultureInfo.CreateSpecificCulture("fr-FR")));
// 출력
// February 07, 2021 Thu 미국식
// fevrier 07, 2019 jeu. 프랑스식
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Globalization; // CultureInfo
namespace A088_DateTimeFormat
{
class Program
{
static void Main(string[] args)
{
DateTime today = DateTime.Now;
Console.WriteLine(today.ToString("yyyy년 MM월 dd일"));
Console.WriteLine(string.Format("{0:yyyy년 MM월 dd일}", today));
Console.WriteLine(today.ToString("MMMM dd, yyyy ddd", CultureInfo.CreateSpecificCulture("en-US")));
Console.WriteLine("d (축약된 날짜 형식) : " + today.ToString("d"));
Console.WriteLine("D (긴 날짜 형식) : " + string.Format("{0:D}", today));
Console.WriteLine("t (축약된 시간 형식) : " + string.Format("{0:t}", today));
Console.WriteLine("T (긴 시간 형식) : " + string.Format("{0:T}", today));
Console.WriteLine("g (일반 날짜 및 시간-초생략) : " + string.Format("{0:g}", today));
Console.WriteLine("G (일반 날짜 및 시간) : " + string.Format("{0:G}", today));
Console.WriteLine("f (Full 날짜 및 시간-초생략) : " + string.Format("{0:f}", today));
Console.WriteLine("F (Full 날짜 및 시간) : " + string.Format("{0:F}", today));
Console.WriteLine("s (ISO 8601 표준-밀리초 생략) : " + string.Format("{0:s}", today));
Console.WriteLine("o (ISO 8601 표준) : " + string.Format("{0:o}", today));
Console.WriteLine("r (UTC로 표시) : " + string.Format("{0:r}", today));
Console.WriteLine("u (UTC로 출력) : " + string.Format("{0:u}", today));
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 13일차 - 90. 가변길이 매개변수 params의 사용방법 (0) | 2021.02.09 |
---|---|
[C#] 13일차 - 89. 메소드에 인수를 전달하는 세 가지 방법 (0) | 2021.02.09 |
[C#] 13일차 - 87. TimeSpan을 이용한 생애계산기 (0) | 2021.02.09 |
[C#] 13일차 - 86. TimeSapn 구조체의 사용 방법 (0) | 2021.02.09 |
[C#] 12일차 - 85. DateTime 구조체 (0) | 2021.02.07 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!