System.Configuration.ErrorsHelper.GetErrorCount C# (CSharp) Method

GetErrorCount() static private method

static private GetErrorCount ( List errors ) : int
errors List
return int
        static internal int GetErrorCount(List<ConfigurationException> errors) {
            return (errors != null) ? errors.Count : 0;
        }