Source: MB
try
{
}
catch (Exception ex)
{
while (ex.InnerException != null) ex = ex.InnerException;
throw ex;
}
115100cookie-checkC# Get the root InnerException
Source: MB
try
{
}
catch (Exception ex)
{
while (ex.InnerException != null) ex = ex.InnerException;
throw ex;
}