반응형
Dt에 "이메일"이라는 컬럼이 있는 경우
전체목록뽑기
( From row in dt.AsEnumerable() Select Convert.Tostring(row([ColumnName])) ).ToList()
중복제거 시
( From row in dt.AsEnumerable() Select Convert.Tostring(row([ColumnName])) ).Distinct().ToList()
반응형
'프로그래밍 > uipath' 카테고리의 다른 글
Uipath Array Sort (0) | 2022.02.09 |
---|---|
Uipath Dictionary 다양한 형태 예시 Dictionary <String, DataTable> datatable에서 동일한 컬럼별로 분류 (0) | 2021.10.01 |
Excel Application 오류 - 엑셀이 설치된 경우 홈 화면의 도구 탭에서 마이크로소프트 오피스 인터롭용 복구 도구를 실행하십시오 (0) | 2021.09.08 |
Uipath String 정규식 이용하여 괄호안의 문자 제거 (0) | 2021.08.09 |
Uipath 1~100 반복 Enumerable.range(0, 99).ToArray (0) | 2021.07.31 |