FastACH 0.1.8.66
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 FastACH --version 0.1.8.66
NuGet\Install-Package FastACH -Version 0.1.8.66
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="FastACH" Version="0.1.8.66" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FastACH" Version="0.1.8.66" />
<PackageReference Include="FastACH" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FastACH --version 0.1.8.66
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: FastACH, 0.1.8.66"
#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.
#:package FastACH@0.1.8.66
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=FastACH&version=0.1.8.66
#tool nuget:?package=FastACH&version=0.1.8.66
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
FastACH
.NET library for reading and writing ACH files
Installation 
.NET 7.0
PM> Install-Package FastACH
Add namespace to the program
using FastACH;
Usage
Reading ACH file
var reader = new AchFileReader();
var achFile = await reader.Read("ACH.txt");
var achFileWriter = new AchFileWriter();
achFileWriter.WriteToConsole(achFile); // Output to console
Writing ACH file
var achFile = new AchFile()
{
OneRecord = new FileHeaderRecord()
{
ImmediateDestination = "123456789",
ImmediateOrigin = "123456789",
FileCreationDate = DateOnly.FromDateTime(DateTime.Now),
FileCreationTime = TimeOnly.FromDateTime(DateTime.Now),
FileIdModifier = 'A',
ImmediateDestinationName = "PNC Bank",
ImmediateOriginName = "Microsoft Inc.",
ReferenceCode = "00000000"
},
BatchRecordList =
{
new BatchRecord()
{
BatchHeader = new BatchHeaderRecord()
{
ServiceClassCode = 200,
CompanyName = "companyName",
CompanyDiscretionaryData = "companyDiscretionary",
CompanyId = "companyID",
CompanyEntryDescription = "EntryDescr",
CompanyDescriptiveDate = new DateOnly(2011, 02, 03),
EffectiveEntryDate = new DateOnly(2011, 01, 02),
OriginatingDFIID = "DFINumber"
},
TransactionDetailsList =
{
new TransactionRecord
{
EntryDetail = new EntryDetailRecord()
{
TransactionCode = 22,
ReceivingDFIID = 12345678,
CheckDigit = '9',
DFIAccountNumber = "1313131313",
Amount = 22M,
ReceiverIdentificationNumber = "ID Number",
ReceiverName = "ID Name",
DiscretionaryData = "Desc Data",
AddendaRecordIndicator = true,
},
Addenda = new AddendaRecord()
{
AddendaInformation = "Monthly bill"
}
},
new TransactionRecord()
{
EntryDetail = new EntryDetailRecord()
{
TransactionCode = 27,
ReceivingDFIID = 12345678,
CheckDigit = '9',
DFIAccountNumber = "1313131313",
Amount = 27M,
ReceiverIdentificationNumber = "ID Number",
ReceiverName = "ID Name",
DiscretionaryData = "Desc Data",
AddendaRecordIndicator = false,
},
Addenda = null
}
}
}
}
};
var writer = new AchFileWriter();
await writer.WriteToFile(achFile, "ACH.txt");
Perfomance results
I created a benchmark to compare reading performance between FastACH and very popular ChoETL.Nacha library.
BenchmarkDotNet v0.13.12, Windows 11 (10.0.22621.3007/22H2/2022Update/SunValley2) 13th Gen Intel Core i7-1370P, 1 CPU, 20 logical and 14 physical cores .NET SDK 8.0.100 [Host] : .NET 7.0.15 (7.0.1523.57226), X64 RyuJIT AVX2 DefaultJob : .NET 7.0.15 (7.0.1523.57226), X64 RyuJIT AVX2
Method | NumberOfEntries | Mean | Error | StdDev |
---|---|---|---|---|
FastACH | 1000 | 0.8138 ms | 0.0123 ms | 0.0109 ms |
ChoETL.Nacha | 1000 | 335.7584 ms | 6.6044 ms | 13.1896 ms |
FastACH | 10000 | 10.0477 ms | 0.1996 ms | 0.4505 ms |
ChoETL.Nacha | 10000 | 3,240.3946 ms | 54.2025 ms | 50.7010 ms |
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net7.0
- No dependencies.
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 |
---|---|---|
0.5.0.98 | 1,057 | 3/7/2025 |
0.4.0.94 | 754 | 12/12/2024 |
0.3.5.93 | 114 | 10/22/2024 |
0.3.5.92 | 415 | 10/21/2024 |
0.3.4.90 | 170 | 10/18/2024 |
0.3.4.89 | 162 | 10/18/2024 |
0.3.3.88 | 166 | 6/28/2024 |
0.3.3.87 | 584 | 6/27/2024 |
0.3.2.86 | 138 | 6/27/2024 |
0.3.1.85 | 133 | 6/27/2024 |
0.3.0.84 | 144 | 6/27/2024 |
0.2.6.83 | 210 | 6/5/2024 |
0.2.5.82 | 131 | 6/5/2024 |
0.2.5.81 | 126 | 6/5/2024 |
0.2.5.80 | 137 | 6/4/2024 |
0.2.5.79 | 142 | 6/4/2024 |
0.2.5.78 | 117 | 6/4/2024 |
0.2.4.77 | 137 | 6/4/2024 |
0.2.4.76 | 133 | 6/4/2024 |
0.2.3.75 | 130 | 6/4/2024 |
0.2.3.74 | 138 | 6/4/2024 |
0.2.2.73 | 130 | 6/4/2024 |
0.2.1.72 | 138 | 6/4/2024 |
0.2.1.71 | 121 | 5/31/2024 |
0.2.0.70 | 123 | 5/31/2024 |
0.1.11.69 | 126 | 5/31/2024 |
0.1.10.68 | 300 | 4/15/2024 |
0.1.9.67 | 149 | 2/1/2024 |
0.1.8.66 | 532 | 2/1/2024 |
0.1.7.65 | 141 | 2/1/2024 |
0.1.6.64 | 132 | 2/1/2024 |
0.1.5.63 | 136 | 2/1/2024 |
0.1.4.62 | 131 | 1/31/2024 |
0.1.3.61 | 127 | 1/31/2024 |
0.1.2.60 | 123 | 1/31/2024 |
0.1.1.59 | 118 | 1/31/2024 |
0.1.1.58 | 128 | 1/31/2024 |
0.1.0.57 | 124 | 1/31/2024 |
0.0.12.56 | 138 | 1/25/2024 |
0.0.11.55 | 128 | 1/24/2024 |
0.0.10.53 | 138 | 1/24/2024 |
0.0.10.52 | 137 | 1/23/2024 |
0.0.9.51 | 128 | 1/23/2024 |
0.0.8.50 | 126 | 1/23/2024 |
0.0.8.49 | 124 | 1/23/2024 |
0.0.8.48 | 120 | 1/23/2024 |
0.0.7.47 | 135 | 1/22/2024 |
0.0.6.46 | 124 | 1/22/2024 |
0.0.6 | 142 | 1/22/2024 |
0.0.5 | 147 | 1/18/2024 |
0.0.4 | 126 | 1/18/2024 |
0.0.3 | 142 | 1/18/2024 |
0.0.2 | 140 | 1/16/2024 |
0.0.1.1 | 142 | 1/8/2024 |
0.0.1 | 141 | 1/8/2024 |