C# Library to parse the SWIFT MT Financial Messages.
There are a number of tests that can be used to understand the usage of the library.
##What's Available:
- A great majority of the popular tags in a swift message are available (65%). I'll be working on the rest shortly.
- Parsing a Swift message tags into a collection of type ITag.
- A Number of tests are available with sample messages. (You just have to change the path on the messages once you download)
using (StreamReader sr = File.OpenText(FileName)) { str = sr.ReadToEnd(); }
SwiftMessage message = new SwiftMessage(); message.ParseSwiftMessage(str.Trim());
Now you have an object called message seperated in blocks
If you have questions please feel free to reach out to [email protected]