我有以下代码行:
MsgBox(ConfigurationManager.AppSettings.Get("Path"))
在 app.config 文件中这个 xml:
<appSettings>
<add key="PATH" value="myPath"/>
</appSettings>
然后我部署解决方案并将其(exe 和 xml-config 文件)保存到 appdata-roaming 路径:
C:\Users\<username>\AppData\Roaming\<solutionname>
当我双击运行它时,按摩框显示值“myPath”。当我将它设置为在自动启动中运行并重新启动我的机器时,massege-box 是空的(null)。为什么无法在自动启动时读取 config-xml 文件?