foreach (System.Data.DataColumn col in dataTable.Columns)
{
col.ReadOnly = false;
}
데이터 테이블의 컬럼의 읽기전용 속성 해제
'CODE 저장소 > C# CODE' 카테고리의 다른 글
텍스트문서에서 특정 문자 DateTime로 변경 (0) | 2019.04.18 |
---|
foreach (System.Data.DataColumn col in dataTable.Columns)
{
col.ReadOnly = false;
}
데이터 테이블의 컬럼의 읽기전용 속성 해제
텍스트문서에서 특정 문자 DateTime로 변경 (0) | 2019.04.18 |
---|
텍스트 문서에 포함된 문자형식 날짜를 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;
}
c# datarow 읽기 전용 열입니다 해결방법 (0) | 2019.04.26 |
---|