<small id='aJsh2'></small><noframes id='aJsh2'>

    <tfoot id='aJsh2'></tfoot>
      <bdo id='aJsh2'></bdo><ul id='aJsh2'></ul>
  1. <legend id='aJsh2'><style id='aJsh2'><dir id='aJsh2'><q id='aJsh2'></q></dir></style></legend>
    <i id='aJsh2'><tr id='aJsh2'><dt id='aJsh2'><q id='aJsh2'><span id='aJsh2'><b id='aJsh2'><form id='aJsh2'><ins id='aJsh2'></ins><ul id='aJsh2'></ul><sub id='aJsh2'></sub></form><legend id='aJsh2'></legend><bdo id='aJsh2'><pre id='aJsh2'><center id='aJsh2'></center></pre></bdo></b><th id='aJsh2'></th></span></q></dt></tr></i><div id='aJsh2'><tfoot id='aJsh2'></tfoot><dl id='aJsh2'><fieldset id='aJsh2'></fieldset></dl></div>
    1. 控制台应用程序 C# 中的 App.Config 文件

      时间:2023-08-27
          <tbody id='kDlIx'></tbody>

        <tfoot id='kDlIx'></tfoot>
          <bdo id='kDlIx'></bdo><ul id='kDlIx'></ul>
          1. <i id='kDlIx'><tr id='kDlIx'><dt id='kDlIx'><q id='kDlIx'><span id='kDlIx'><b id='kDlIx'><form id='kDlIx'><ins id='kDlIx'></ins><ul id='kDlIx'></ul><sub id='kDlIx'></sub></form><legend id='kDlIx'></legend><bdo id='kDlIx'><pre id='kDlIx'><center id='kDlIx'></center></pre></bdo></b><th id='kDlIx'></th></span></q></dt></tr></i><div id='kDlIx'><tfoot id='kDlIx'></tfoot><dl id='kDlIx'><fieldset id='kDlIx'></fieldset></dl></div>

            • <small id='kDlIx'></small><noframes id='kDlIx'>

              <legend id='kDlIx'><style id='kDlIx'><dir id='kDlIx'><q id='kDlIx'></q></dir></style></legend>
              1. 本文介绍了控制台应用程序 C# 中的 App.Config 文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述


                我有一个控制台应用程序,我想在其中写入文件名.


                I have a console application in which I want to write the name of a file.

                Process.Start("blah.bat");
                

                通常,通过将文件 'blah.bat' 的名称写入 Properties 文件中的 Settings 文件,我会在 Windows 应用程序中拥有类似的东西强>.
                但是,在这里我没有找到任何 Settings 文件,我添加了一个 app.config 用于相同目的.

                Normally, I would have something like that in windows application by writing the name of the file 'blah.bat' to Settings file in Properties.
                However, here I didn't find any Settings file and I added an app.config for the same purpose.

                我不确定在 app.config 中写什么,这会导致我实现与 Windows 窗体 中类似的事情.

                I am not sure what to write here in app.config, that would lead to me to achieve similar thing as in Windows Forms.

                例如:在 Windows 窗体中.Process.Start(Properties.Settings.Default.BatchFile);
                其中 BatchFile 是属性设置文件中的字符串.

                For eg: In windows forms. Process.Start(Properties.Settings.Default.BatchFile);
                where BatchFile is a string in settings file in Properties.

                推荐答案

                您可以在项目中添加对 System.Configuration 的引用,然后:

                You can add a reference to System.Configuration in your project and then:

                使用 System.Configuration;

                然后

                string sValue = ConfigurationManager.AppSettings["BatchFile"];

                使用像这样的 app.config 文件:

                with an app.config file like this:

                <?xml version="1.0" encoding="utf-8" ?>
                <configuration>
                   <appSettings>
                       <add key="BatchFile" value="blah.bat" />
                   </appSettings>
                </configuration>
                

                这篇关于控制台应用程序 C# 中的 App.Config 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:控制台应用程序中的进度条 下一篇:从单元测试中获取发送到 Console.Out 的输出?

                相关文章

                最新文章

                <small id='Bi2lN'></small><noframes id='Bi2lN'>

                  <bdo id='Bi2lN'></bdo><ul id='Bi2lN'></ul>

              2. <legend id='Bi2lN'><style id='Bi2lN'><dir id='Bi2lN'><q id='Bi2lN'></q></dir></style></legend><tfoot id='Bi2lN'></tfoot>

                  <i id='Bi2lN'><tr id='Bi2lN'><dt id='Bi2lN'><q id='Bi2lN'><span id='Bi2lN'><b id='Bi2lN'><form id='Bi2lN'><ins id='Bi2lN'></ins><ul id='Bi2lN'></ul><sub id='Bi2lN'></sub></form><legend id='Bi2lN'></legend><bdo id='Bi2lN'><pre id='Bi2lN'><center id='Bi2lN'></center></pre></bdo></b><th id='Bi2lN'></th></span></q></dt></tr></i><div id='Bi2lN'><tfoot id='Bi2lN'></tfoot><dl id='Bi2lN'><fieldset id='Bi2lN'></fieldset></dl></div>