System.Configuration.ConfigurationErrorsException.GetInnerException C# (CSharp) Метод

GetInnerException() статический приватный Метод

static private GetInnerException ( ConfigurationException e ) : Exception
e ConfigurationException
Результат System.Exception
        static private Exception GetInnerException(ConfigurationException e) {
            if (e != null) {
                return e.InnerException;
            }

            return null;
        }