• 配置文件的几种读取方式


     private void button1_Click(object sender, EventArgs e)
            {
                //指定路径的方式
              object obj=  AppConfig访问方式.Properties.Settings.Default.Setting;
              MessageBox.Show(obj.ToString());
            }
    
            private void button2_Click(object sender, EventArgs e)
            {
                //通过索引的方式
                AppSettingsReader app = new AppSettingsReader();
                string str = app.GetValue("user1", typeof(string)).ToString();
                MessageBox.Show(str);
            }
    
            private void button3_Click(object sender, EventArgs e)
            {
                object obj = ConfigurationSettings.AppSettings["user1"];
                MessageBox.Show(obj.ToString());
            }

     附件:http://files.cnblogs.com/files/BABLOVE/AppConfig%E8%AE%BF%E9%97%AE%E6%96%B9%E5%BC%8F.rar

  • 相关阅读:
    EF 使用 oracle
    mysql安装笔记
    解决问题
    第四次冲刺
    第三次冲刺
    SQA
    第二次冲刺
    第一次冲刺,求进步
    Scrum _GoodJob
    我对git 、github的初印象
  • 原文地址:https://www.cnblogs.com/BABLOVE/p/4462095.html
Copyright © 2020-2023  润新知