ExcelHelperReadCSVT(Stream) Method
讀取CSV文件並轉換為物件
Namespace: eBizprise.UtilityAssembly: eBizprise.Utility.ExcelHelper (in eBizprise.Utility.ExcelHelper.dll) Version: 25.0.1.0+9af286275430f5cdff066120a88db0d7edbaef7c
public static List<T> ReadCSV<T>(
Stream stream
)
- stream Stream
- 資料流
- T
- 物件
ListTList<T>
using (FileStream fileStream = new FileStream("ExcelHelperTest.csv", FileMode.Open))
{
List<Employee> employees = ExcelHelper.ReadCSV<Employee>(fileStream);
// 其它作業
}
| Date | Version | Description |
|---|
| 2021/08/18 | 1.0.6.0 | 調整CSV改以CsvHelper元件處理 |
| 2025/09/19 | 25.0.0.0 | 彙整2025年度初版 |