class Program
{ static void Main(string[] args) { string strDate; DateTime dtDate; // Convert.ToDateTime strDate = "13-05-01"; strDate = "2013-05-01"; //strDate = "20130501"; // error dtDate = Convert.ToDateTime(strDate); // DateTime.Paser strDate = "13-05-01"; strDate = "2013-05-01"; //strDate = "20130501"; // error dtDate = DateTime.Parse(strDate); // DateTime.PaserExact strDate = "20130501"; dtDate = DateTime.ParseExact(strDate, "yyyyMMdd", null); } }
'프로그래밍 > .NET' 카테고리의 다른 글
[ASP.NET]페이지 로드 후 몇초 후 다른 페이지로 이동 (0) | 2013.05.14 |
---|---|
[C#]IP 주소 얻기 (0) | 2013.05.14 |
[C#]수행 시간측정 (0) | 2013.04.16 |
[ASP.NET]FindControl not working in content page (0) | 2013.04.06 |
[C#]IEnumerable, IEnumerator (0) | 2013.02.23 |