我们如何在App.config中编写自己的配置

发布于 2024-12-23 03:35:52 字数 326 浏览 1 评论 0原文

在我的一个 C# 应用程序中,我必须在配置文件中编写目录路径,如下所示

Main Folder = Sites
Sub Folders = 400, 500, 600, and so on
For each subfolders = Inst, Prof

在 Inst 和 Prof 中,我们有多个文件。

在我的程序中,我必须获取所有站点(400、500 等),然后我必须为两个文件夹(Inst 和 Prof)的所有站点逐个编写循环,完成后然后转到下一个站点,依此类推

什么是在 App.config 文件中编写上述文件夹结构的最佳方法?

In one of my c# application, i have to write directories path inside config file as following

Main Folder = Sites
Sub Folders = 400, 500, 600, and so on
For each subfolders = Inst, Prof

Inside Inst and Prof , we have multiple files.

Inside my program, i have to fetch all sites (400, 500 etc) and then i have to write loop for all sites for both folders (Inst and Prof) one by one, once DONE then go for next site and so on

What is best way to write above folder structure in App.config file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小姐丶请自重 2024-12-30 03:35:52

您应该查看 CodeProject 上 Jon Rista 关于 .NET 2.0 配置的三部分系列。

强烈推荐,写得很好,非常有帮助!这将使您全面了解 .NET 配置系统。

要设计您自己的自定义部分,还有一个名为配置部分设计器的方便工具(Visual Studio 插件),它可以将使创建您自己的自定义部分变得非常容易和简单,并让它构建所有必要的代码来处理该自定义部分。

You should check out Jon Rista's three-part series on .NET 2.0 configuration up on CodeProject.

Highly recommended, well written and extremely helpful! This will give you a thorough understanding of the .NET configuration system.

To design your own custom section, there's also a handy tool (Visual Studio add-in) called Configuration Section Designer that will make it very easy and simple to create your own custom section and have it build up all the necessary code to handle that custom section.

琴流音 2024-12-30 03:35:52

有一种简单的方法来创建自定义配置。 自定义配置-sections-in -3个简单步骤

There is an easy way to create custom configure . custom-configuration-sections-in-3-easy-steps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文