System.Configuration.ErrorsHelper.GetErrorsException C# (CSharp) 메소드

GetErrorsException() 정적인 개인적인 메소드

static private GetErrorsException ( List errors ) : ConfigurationErrorsException
errors List
리턴 ConfigurationErrorsException
        static internal ConfigurationErrorsException GetErrorsException(List<ConfigurationException> errors) {
            if (errors == null) {
                return null;
            }

            Debug.Assert(errors.Count != 0, "errors.Count != 0");
            return new ConfigurationErrorsException(errors);
        }