Skip to content

.NET Standard 2.1 library for parsing Belgian CODA files

License

Notifications You must be signed in to change notification settings

neuroglia-io/Data.Coda

Repository files navigation

Neuroglia.Data.Coda

.NET Standard 2.1 library for parsing Belgian CODA files

Usage

Nuget Package

  dotnet add package Neuroglia.Data.Coda

Sample Code

var parser = new CodaParser();
var doc = parser.Parse(File.ReadAllText("test.coda"));
foreach(var statement in doc.Statements)
{
    Console.ForegroundColor = ConsoleColor.DarkYellow;
    Console.WriteLine($"Statement {statement.Date}");
    Console.ForegroundColor = ConsoleColor.Gray;
    Console.WriteLine("--------------------------------------------");
    foreach(var transaction in statement.Transactions)
    {
        Console.WriteLine("{transaction.SequenceNumber} - {transaction.Type} {transaction.Amount}");
    }
    Console.WriteLine("--------------------------------------------");
}

Contributing

Please see CONTRIBUTING.md for instructions on how to contribute.

About

.NET Standard 2.1 library for parsing Belgian CODA files

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages