views:

76

answers:

3

Does the HTML Agility Pack contain unmanaged code? If so, will I see any problems when using unmanaged code in my application?

+1  A: 

It is available as C# source, so I don't think so. You would have to check for externs, but that is about it...

Marc Gravell
A: 

I just had a quick peek in the code as I had it handy - I couldn't find any extern's or any instances of DllImport (as of 1.4 beta 2).

donovan
+1  A: 

No the HAP is 100% managed code. It's even supported in Mono wich is a cross-platform equivalent of the .NET framework.

Simon