TxtCsvHelper 1.0.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package TxtCsvHelper --version 1.0.1
NuGet\Install-Package TxtCsvHelper -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TxtCsvHelper" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TxtCsvHelper --version 1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: TxtCsvHelper, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TxtCsvHelper as a Cake Addin #addin nuget:?package=TxtCsvHelper&version=1.0.1 // Install TxtCsvHelper as a Cake Tool #tool nuget:?package=TxtCsvHelper&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
TxtCsvHelper
TxtCsvHelper is a library to assist in parsing CSV, or any other form of delimited files. You can fill models, fill dynamics, or simply get a list of fields by line.
Installation
Use the package manager console to install TxtCsvHelper.
Install-Package TxtCsvHelper -Version 1.1.0
Usage
using TxtCsvHelper;
//To return an IEnumerable<T>
//Deserialize<T> can take a Stream, FileStream, MemoryStream or a string
//Followed by 3 optional parameters: the delimiter character (will default to a comma)
//A bool if there is a header line (will default to true)
//A bool if there are spaces between delimiters and fields (will default to false)
var models = Parser.Deserialize<Name>(postedFile.OpenReadStream(), ',', true, false);
//To return an IEnumerable of type dynamic
//Deserialize can take a Stream, FileStream, MemoryStream or a string
//Followed by 2 optional parameters: the delimiter character (will default to a comma)
//A bool if there are spaces between delimiters and fields (will default to false)
var models = Parser.Deserialize(postedFile.OpenReadStream(), ',', false);
//To return an IEnumerable<string> for each //line
//SplitLine takes a Line of delimited fields
//Followed by 2 optional parameters: the //delimiter character (will default to a comma)
//A bool if there are spaces between delimiters //and fields (will default to false)
(using (StreamReader sr = new StreamReader(postedFile.OpenReadStream()))
{
while(sr.Peek() >= 0)
var substrings = Parser.Splitline(sr.Readline())
//do something with the strings
}
//If no header exists, you may declare the index of the field in the model with [SetIndex()]
//simply put the index starting with 0 inside the parentheses
using TxtCsvHelper;
public class Name
{
[SetIndex(1)]
public string LastName { get; set; }
[SetIndex(0)]
public string FirstName { get; set; }
[SetIndex(2)]
public string MiddleName { get; set; }
[SetIndex(3)]
public int Age { get; set; }
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- Microsoft.CSharp (>= 4.7.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.3.3 | 4,018 | 6/24/2022 |
1.3.2 | 459 | 6/20/2022 |
1.3.1 | 688 | 8/2/2021 |
1.3.0 | 399 | 8/1/2021 |
1.2.9 | 392 | 7/12/2021 |
1.2.8 | 410 | 7/1/2021 |
1.2.7 | 395 | 6/21/2021 |
1.2.6 | 343 | 6/21/2021 |
1.2.5 | 374 | 5/17/2021 |
1.2.4 | 375 | 5/15/2021 |
1.2.3 | 370 | 5/11/2021 |
1.2.2 | 344 | 5/10/2021 |
1.2.1 | 333 | 5/9/2021 |
1.2.0 | 352 | 5/9/2021 |
1.1.9 | 359 | 5/9/2021 |
1.1.8 | 422 | 5/8/2021 |
1.1.7 | 360 | 5/8/2021 |
1.1.6 | 350 | 5/8/2021 |
1.1.5 | 412 | 5/7/2021 |
1.1.4 | 412 | 5/7/2021 |
1.1.3 | 431 | 5/7/2021 |
1.1.2 | 403 | 5/6/2021 |
1.1.1 | 363 | 5/6/2021 |
1.1.0 | 379 | 5/6/2021 |
1.0.1 | 377 | 5/6/2021 |
1.0.0 | 368 | 5/6/2021 |