91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何獲取App.config配置文件中的參數值

發布時間:2021-01-28 09:30:45 來源:億速云 閱讀:359 作者:Leah 欄目:開發技術

如何獲取App.config配置文件中的參數值?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

首先添加System.Configuration引用

向App.config配置文件添加參數
App.config添加
向App.config配置文件添加參數
  例子:

  在這個App.config配置文件中,我添加了4個參數,App.config參數類似HashTable都是鍵/值對

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
 <appSettings>
 <add key="theDate" value="2015-07-20 16:25"/>
 <add key="theName" value="Alice"/>
 <add key="theType" value="NBA"/>
 <add key="thePrice" value="12500.00"/>
 </appSettings>
</configuration>

  那如何訪問App.config配置文件中的參數值呢?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Configuration;

namespace AppConfigDemo
{
 class Program
 {
  static void Main(string[] args)
  {
   //判斷App.config配置文件中是否有Key(非null)
   if (ConfigurationManager.AppSettings.HasKeys())
   {
    //循環遍歷出配置文件中的所有的鍵Key
    foreach (string s in ConfigurationManager.AppSettings)
    {
     Console.WriteLine(s);
    }
   }
   Console.ReadKey();
  }
 }
}

  使用for循環遍歷Key的代碼如下:


       

 static void Main(string[] args)
  {
   //判斷App.config配置文件中是否有Key(非null)
   if (ConfigurationManager.AppSettings.HasKeys())
   {
    //循環遍歷出配置文件中的所有的鍵Key
    for (int i = 0; i < ConfigurationManager.AppSettings.Count; i++)
    {
     Console.WriteLine(ConfigurationManager.AppSettings.GetKey(i));
    }
   }
   Console.ReadKey();
  }

  通過Key訪問Value的方法:

static void Main(string[] args)
  {
   //判斷App.config配置文件中是否有Key(非null)
   if (ConfigurationManager.AppSettings.HasKeys())
   {
    //獲取“theDate”鍵的Value
    foreach (string s in ConfigurationManager.AppSettings.GetValues("theDate"))
    {
     Console.WriteLine(s);
    }
   }
   Console.ReadKey();
  }

  如果你想獲取所有Key的Value集合,那該怎么辦呢?

  思路:將所有的Key遍歷出后保存在一個容器里(例如:數組),然后用Key匹配找出Value即可。

 static void Main(string[] args)
  {
   //判斷App.config配置文件中是否有Key(非null)
   if (ConfigurationManager.AppSettings.HasKeys())
   {
    List<string> theKeys = new List<string>(); //保存Key的集合
    List<string> theValues = new List<string>(); //保存Value的集合
    //遍歷出所有的Key并添加進theKeys集合
    foreach (string theKey in ConfigurationManager.AppSettings.Keys)
    {
     theKeys.Add(theKey);
    }
    //根據Key遍歷出所有的Value并添加進theValues集合
    for (int i = 0; i < theKeys.Count; i++)
    {
     foreach (string theValue in ConfigurationManager.AppSettings.GetValues(theKeys[i]))
     {
      theValues.Add(theValue);
     }
    }
    //驗證一下
    Console.WriteLine("*************Key*************");
    foreach (string s in theKeys)
    {
     Console.WriteLine(s);
    }
    Console.WriteLine("************Value************");
    foreach (var item in theValues)
    {
     Console.WriteLine(item);
    }
   }
   Console.ReadKey();
  }

如何獲取App.config配置文件中的參數值

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新野县| 界首市| 当涂县| 仁寿县| 高安市| 靖西县| 万山特区| 府谷县| 锦屏县| 柘城县| 咸丰县| 新泰市| 灵璧县| 金乡县| 喀喇沁旗| 大兴区| 伊川县| 白银市| 寻乌县| 和林格尔县| 余江县| 松潘县| 灯塔市| 郓城县| 璧山县| 长兴县| 平顶山市| 封开县| 万宁市| 富宁县| 汉沽区| 井陉县| 高台县| 张家川| 平谷区| 长白| 新河县| 牟定县| 楚雄市| 水城县| 漾濞|