Skip to content

Library developed with C# that reads and translate OFX files (financial files), like a parser to help your own C# application.

Notifications You must be signed in to change notification settings

leonardomelosantos/ofxparser.net

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

Library developed with C# that reads and translate OFX files (financial files), like a parser to help your own C# application.

Example:

string pathOFX = "D:\\data\\MyFile.ofx";
Extract ofxParsed = OFXParser.Parser.GenerateExtract(pathOFX);
if (ofxParsed != null)
{
    foreach (var transaction in ofxParsed.Transactions)
    {
       // Do something with the transaction    
    }
}

How to download

It's possible download this lib by using Nuget.org. https://www.nuget.org/packages/OFXParser/

About

Library developed with C# that reads and translate OFX files (financial files), like a parser to help your own C# application.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages