Visual C # 提供了很容易的設定方法 , 以便程式讀取儲存設定檔,透過setings的介面新增刪除修改config的檔案。其configure檔,儲存為 App.xml ,看副檔名就知道是以xml的形式儲存 以下紀錄我使用的筆記: Visual c#在建立專案時會產生檔,打開該檔可以看到方案總管裡有以下資料properties ->Settings.settings,雙擊後會出現 vc# 提供的介面可以新增 刪除 修改 變數 新增完變數,問題來了 ! 要去哪裡使用 : 其實很簡單只要在程式中加幾行就可以使用了 //使用Config檔 Properties.Settings Config = Properties.Settings.Default; //如果要使用可以直接取出在Settings.settings裡新增的的變數 string test = Config.test; //要修改設定也可以直接修改 Config.test = "this is a test case"; //儲存設定 Config.Save(); 非常的方便