일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Series
- CNN
- pip
- install
- Lotto
- E-P1
- keras
- Numpy
- LSTM
- index
- dataframe
- imread
- 알고리즘
- DFS
- javascript
- pandas
- Python
- synology
- Button
- Splunk
- 삼성소프트웨어멤버십
- GitHub
- SPL
- mariadb
- SciPy
- mean
- RNN
- pycharm
- GT-S80
- ipad
Archives
- Today
- Total
목록DataTable (1)
잠토의 잠망경
[c#] from DataTable To List<T>
DataTable에서 List 로 변환하기 github using System; using System.Collections.Generic; using System.Data; using System.Reflection; namespace WCF_Util { public class MyConverter { public static List ConvertDataTable(DataTable dt) { List data = new List(); foreach (DataRow row in dt.Rows) { T item = GetItem(row); data.Add(item); } return data; } public static T GetItem(DataRow dr) { Type temp = typeof(T);..
공부/C sharp
2020. 5. 4. 21:08