C# - DateTime 변환 설명
① 개발 중 문자열을 날짜 형식으로 변경하는 작업은 빈번하게 발생해요. C# 역시 여러 방법을 지원하고 있습니다.
② 부가적인 포멧 형식은 레퍼런스 문서를 참조하시면 쉽게 구현하실 수 있습니다.
③ 변환하는 간단한 예제는 하단을 참조하세요.
C# - String To DateTime 변환 예제
원본코드
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | using System; public class Program { public static void Main() { //변수 선언 string strDate1; string strDate2; string strDate3; DateTime dtDate1; DateTime dtDate2; DateTime dtDate3; // Convert.ToDateTime 사용 strDate1 = "2018-01-20"; dtDate1 = Convert.ToDateTime(strDate1); Console.WriteLine("결과1 : "+ dtDate1); Console.WriteLine(""); // DateTime.Paser 사용 strDate2 = "2018-01-20"; dtDate2 = DateTime.Parse(strDate2); Console.WriteLine("결과2 : "+ dtDate2); Console.WriteLine(""); // DateTime.PaserExact 사용 strDate3 = "2018-01-20"; dtDate3 = DateTime.ParseExact(strDate3, "yyyy-MM-dd", null); Console.WriteLine("결과3 : "+ dtDate3); } } | cs |
실행화면
'언어 > C#' 카테고리의 다른 글
C#- 스택(Stack) 클래스 기본 구현 사용 및 예제 (0) | 2018.06.14 |
---|---|
C#- 제네릭(Generic) & 델리게이트(Delegate) 기본 예제 (0) | 2018.04.09 |
C# - 문자열(String) 에서 숫자만 추출 하기 (0) | 2017.09.18 |
C# - 바이트(Byte) 배열 병합(합치기) 팁 및 주의 할 점 (0) | 2017.09.17 |