I am looking for an LDIF parser for C#. I am trying to parse an LDIF file so that I can check objects don\'t exist before adding them. Adding them when the already exist usi
I would parse it myself.
If you look at the LDIF RFC for the EBNF, you'll see that it's not a very complex grammar.
I've parsed a large amount of LDIF before using Regexes reliably. Though your mileage may vary.