我正在尝试访问 Windows 服务应用程序中 app.config 的自定义部分。
这就是我定义该部分的方式
<Configurations>
<configSections>
<section name="SectionName" type="ClassName, AssemblyName"/>
</configSections>
<SectionName>...</SectionName>
</Configurations>
我收到以下错误
为以下内容创建配置节处理程序时出错
SectionName
:无法加载类型 'ClassName
,AssemblyName
, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null',因为它不是公共的。
此错误的可能原因是什么?