相关疑难解决方法(0)

如何在.NET中为自定义配置节启用configSource属性?

根据此处发现的大量信息,我们如何才能使外部.config工作?我尝试了相同的设置,我将用于外部appSettings文件,但它无法找到我的自定义部分的文件.

<configSections>
...
    <section name="CustomSettings" type="Fully.Qualified.TypeName.CustomSettings, AssemblyName" />
</configSections>
<!-- this works -->
<CustomSettings attrib1="val1" attrib2="val2" .../>
Run Code Online (Sandbox Code Playgroud)

然而...

<!--this does not work-->
<CustomSettings configSource="someExternalFile.config"/>
Run Code Online (Sandbox Code Playgroud)

someExternalFile.config包含的位置

<CustomSettings attrib1="val1" attrib2="val2" .../>
Run Code Online (Sandbox Code Playgroud)

有任何想法吗?

.net c# configuration app-config configuration-files

27
推荐指数
1
解决办法
2万
查看次数

在c#中将文件保存到应用程序数据

我使用以下方法将文件保存到c#中的文件夹Application Data

string path = 
    Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
Run Code Online (Sandbox Code Playgroud)

它在Windows XP中运行良好,但我找不到这样的文件夹路径我Windows Vista.此文件夹位于Vista中的哪个位置,如何将文件保存到此文件夹

c# windows-vista

5
推荐指数
1
解决办法
8479
查看次数