일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- DFS
- GT-S80
- mariadb
- SPL
- Python
- mean
- index
- pandas
- dataframe
- CNN
- Numpy
- Splunk
- E-P1
- synology
- keras
- Series
- 알고리즘
- ipad
- Lotto
- LSTM
- GitHub
- javascript
- SciPy
- RNN
- pycharm
- imread
- Button
- 삼성소프트웨어멤버십
- pip
- install
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