I want to be able to get access to e.ErrorDetails contents when an exception occurs in a try/catch block, but unfortunately I can't.
How could I do this without parsing the entire exception object?
try
{...}
catch (Exception e)
{Console.WriteLine(e.ErrorDetails);} //compile error!
Thank you
