-
Notifications
You must be signed in to change notification settings - Fork 2
CSV Library for .NET Framework
udawtr/LibCSV
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
LibCSV CSVファイルの読み込みを行うC#ライブラリ(.NET Standard版) public class ZipCodeCSV { public string ZipCode; public string Address; } var fileName = "c:\test.csv"; var source = new CSVSource<ZipCodeCSV>(fileName); ZipCodeCSV data = source.ReadNext(); Console.WriteLine(String.Format("Zip {0}: {1}", data.ZipCode, data.Address));
About
CSV Library for .NET Framework
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published