Search for C # code for working with .PAR2 archives

I was looking for C # or VB.NET code that works with .PAR2 archives (see http://www.par2.net/par2spec.php if ths does not ring the bell!). I looked through everything, but I still need to find something useful. If at all possible, I would like to use some existing work instead of writing from scratch, so any suggestions would be helpful ...

+4
source share
1 answer

The easiest way to use existing work is to use Interop to invoke your own library capable of processing PAR2 archives and simply write the .NET shell for it.

Avoid reinventing the wheel if there is no reason why the NIH line of thought is required?

+1
source

All Articles