Im calling a function in a 3rd party dll. Somewhere down the line it hits an access violation (0xC0000005).
I wrapped the call in a try/catch but it never catches and the runtime pops up the old Unhandled Exception.
This call is several calls deep in my code so I wrapped each parent with try/catch.
Doing this, the exception gets caught 3 calls up, skipping 3 try/catch blocks.
This is just wrong.
Any ideas on how to make this catch when it's supposed to?
Thanks.