Skip to content

Instantly share code, notes, and snippets.

@cjvandyk
Created April 9, 2020 15:12
Show Gist options
  • Save cjvandyk/030f519549900aa39bd0e09777142997 to your computer and use it in GitHub Desktop.
Save cjvandyk/030f519549900aa39bd0e09777142997 to your computer and use it in GitHub Desktop.
Retrieve LoaderExceptions
catch (Exception ex)
{
if (ex is System.Reflection.ReflectionTypeLoadException)
{
var typeEx = ex as ReflectionTypeLoadException;
var loadEx = typeEx.LoaderExceptions;
//Do something with loadEx
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment