public OptionConfiguration(string filePath = null)
        {
            if (filePath != null)
            {
                _filePath = filePath.Trim();
            }

            _sections = new OptionConfigurationSectionCollection();
        }