텍스트 문서에 포함된 문자형식 날짜를 DateTime로 변경
public DateTime GetCurrentTime(string path)
{
String[] txts = FileDao.FileReadAllLines(path, Encoding.GetEncoding(949));
//"2014,04,10,04"
string currentTime = txts[2].Split(' ')[0];
//2014
int year = int.Parse(currentTime.Split(',')[0]);
//4
int mon = int.Parse(currentTime.Split(',')[1]);
//10
int day = int.Parse(currentTime.Split(',')[2]);
//4
int hour = int.Parse(currentTime.Split(',')[3]);
//2014-04-10 오전 4:00:00
DateTime res = new DateTime(year,mon,day,hour,00,00);
return res;
}
'CODE 저장소 > C# CODE' 카테고리의 다른 글
c# datarow 읽기 전용 열입니다 해결방법 (0) | 2019.04.26 |
---|