다음을 통해 공유


방법: 문자열을 DateTime으로 변환(C# 프로그래밍 가이드)

프로그램에서 날짜를 문자열 값으로 입력하는 것이 일반적입니다.문자열로 입력된 날짜를 System.DateTime 개체로 변환하려면 다음 예제와 같이 Convert.ToDateTime(String) 메서드를 사용하거나 DateTime.Parse(String) 정적 메서드를 사용할 수 있습니다.

날짜 문자열을 자세한 예제를 보려면 Convert.ToDateTime(String).

예제

// Date strings are interpreted according to the current culture.
// If the culture is en-US, this is interpreted as "January 8, 2008",
// but if the user's computer is fr-FR, this is interpreted as "August 1, 2008"
string date = "01/08/2008";
DateTime dt = Convert.ToDateTime(date);            
Console.WriteLine("Year: {0}, Month: {1}, Day: {2}", dt.Year, dt.Month, dt.Day);

// Specify exactly how to interpret the string.
IFormatProvider culture = new System.Globalization.CultureInfo("fr-FR", true);

// Alternate choice: If the string has been input by an end user, you might 
// want to format it according to the current culture:
// IFormatProvider culture = System.Threading.Thread.CurrentThread.CurrentCulture;
DateTime dt2 = DateTime.Parse(date, culture, System.Globalization.DateTimeStyles.AssumeLocal);
Console.WriteLine("Year: {0}, Month: {1}, Day {2}", dt2.Year, dt2.Month, dt2.Day);

/* Output (assuming first culture is en-US and second is fr-FR):
    Year: 2008, Month: 1, Day: 8
    Year: 2008, Month: 8, Day 1
 */

참고 항목

기타 리소스

문자열(C# 프로그래밍 가이드)