Format:
Recent snippets matching tags of InnerException
// search for the most "deepest" inner exception string mostInnerException = ""; Exception innerException = ex.InnerException; if (innerException != null) while (innerException.InnerException != null) innerException = innerException.InnerException; if (innerException != null) mostInnerException = innerException.ToString(); // init log info
319 Views
no comments
Subscribe
Discuss
What's new
What is it
New Snippet
Recent Snippets
My Snippets
Web Code
Search
