ConfigurationElementCollection을 사용하여 ConfigurationSection을 구현하는 방법
프로젝트에서 사용자 정의 구성 섹션을 구현하려고하는데 이해하지 못하는 예외에 대비하여 계속 실행됩니다. 누군가가 빈칸을 채울 수 있기를 바랍니다. 나는 App.config다음과 같이 보입니다 : <?xml version="1.0" encoding="utf-8" ?> <configuration> <configSections> <section name="ServicesSection" type="RT.Core.Config.ServicesConfigurationSectionHandler, RT.Core"/> </configSections> <ServicesSection type="RT.Core.Config.ServicesSection, RT.Core"> <Services> <AddService Port="6996" ReportType="File" /> <AddService Port="7001" ReportType="Other" /> </Services> </ServicesSection> </configuration> ServiceConfig다음과 …