C#의 DateTime.ToString() 메서드는 현재 DateTime 개체의 값을 해당하는 문자열 표현으로 변환하는 데 사용됩니다.
구문
다음은 구문입니다 -
ToString(String, IFormatProvider) ToString() ToString(IFormatProvider) ToString(String)
예
이제 DateTime.ToString() 메서드를 구현하는 예를 살펴보겠습니다. -
using System; public class Demo { public static void Main() { DateTime d = new DateTime(2019, 11, 11, 7, 11, 25); Console.WriteLine("Date = {0}", d); string str = d.ToString(); Console.WriteLine("String representation = {0}", str); } }
출력
이것은 다음과 같은 출력을 생성합니다 -
Date = 11/11/2019 7:11:25 AM String representation = 11/11/2019 7:11:25 AM
예
이제 DateTime.ToString(String) 메서드를 구현하는 또 다른 예를 살펴보겠습니다.
using System; public class Demo { public static void Main() { DateTime d = new DateTime(2019, 11, 11, 7, 11, 25); Console.WriteLine("Date = {0}", d); string str = d.ToString("f"); Console.WriteLine("String representation = {0}", str); } }
출력
이것은 다음과 같은 출력을 생성합니다 -
Date = 11/11/2019 7:11:25 AM String representation = Monday, November 11, 2019 7:11 AM