데이터 테이블의 row를 숫자 배열로 담는 방법 궁금합니다

extract data table로 data table을 추출했습니다.
그리고 그 테이블의 4번째 row를 배열로 담고 싶습니다.
4번째 row는 숫자로만 이루어져있습니다.
이를 int32 array 로 담는 방법을 알려주세요 !

제가 찾은 명령어는
DT.AsEnumerable().Select(Function (row) row.Field(of string)(4).ToString).ToArray()
인데요. 이는 string array입니다.
그래서 이를 int32 array 로 담는 방법을 찾고 있습니다.

hey

give a try
strArray.Select(Function (x) cint(x.trim)).toArray

regards!

1 Like

thank you so much! it works really well!!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.