System.Configuration.BaseConfigurationRecord.EnsureLocationSections C# (CSharp) Method

EnsureLocationSections() private method

private EnsureLocationSections ( ) : ArrayList
return ArrayList
        private ArrayList EnsureLocationSections() {
            if (_locationSections == null) {
                _locationSections = new ArrayList();
            }

            return _locationSections;
        }
BaseConfigurationRecord