C#读配置文件

1、C#读配置文件

1)在项目工程的App.config中添加

<appSettings>
    <add key="PathKey" value="C:\Users\yaowanjun\Downloads\配置.csv" />
  appSettings>

2)引用需要添加程序集System.Configuration
C#读配置文件_第1张图片

3)读取配置文件

string str = ConfigurationManager.AppSettings["PathKey"];

你可能感兴趣的:(C#)