• 在控制台程序中,添加config文件


    一、右击类库 → 添加 → 新建项 → 应用程序配置文件(或者选择一个XML文件,然后将名字改成XXX.config),内容如下:

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
      <appSettings>
        <add key="constr" value="0"></add>
      </appSettings>
    </configuration>
     
    二、控制台程序中使用配置文件中的值
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Configuration;//添加System.Configuration.dll的引用
    using System.Collections.Specialized;
    namespace test
    {
        class Program
        {
            static void Main(string[] args)
            {
                string str = System.Configuration.ConfigurationManager.AppSettings.Get("constr");
                Console.WriteLine(str);
                NameValueCollection sall = ConfigurationManager.AppSettings;
                foreach (string s in sall.Keys)
                {
                    Console.WriteLine(s+":"+sall.Get(s));
                }
                Console.ReadKey();
            }
        }
    }
  • 相关阅读:
    dN/dS与分子进化常用软件
    samtools和bcftools使用说明
    变异检测VarScan软件使用说明
    线程可以共享进程里的哪些资源
    函数调用与系统调用的区别
    海量数据统计出现次数
    海量数据查找问题
    建立高并发模型需要考虑的点
    言简意赅的TIME_WAIT
    常用的TCP选项
  • 原文地址:https://www.cnblogs.com/vichin/p/7116643.html
Copyright © 2020-2023  润新知