I'm developing an application in which the BoletoNet library is being used to generate tickets. In this case the library itself when generating the tickets also generates the shipping file that needs to be sent to the bank.
On the other hand, there is also the return file, which the bank provides with return on operations. I need to process this file and extract the information to save in the program database to be available for the user to see.
The problem is that I do not find much information about this file and how this file can be processed. I even found a PDF of Itau on this, but I could not understand how this can be rendered in C #.
If it was an XML, a CSV, a JSON, that's fine. But it looks like it's just a TXT. I really have no idea how the information is extracted from it.
It seems that BoletoNet has an API for this, but frankly this library is very poorly documented and I have not been able to figure out how it can be used in this case.
In this case, considering that a return file is given to Banco Itau, how can it be processed in C # and have the information extracted from it?