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