博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
configurationmanager.getsection usage
阅读量:5949 次
发布时间:2019-06-19

本文共 1142 字,大约阅读时间需要 3 分钟。

public static void CreateAppSettings(){  // Get the application configuration file.  System.Configuration.Configuration config =    ConfigurationManager.OpenExeConfiguration(          ConfigurationUserLevel.None);  string sectionName = "appSettings";  // Add an entry to appSettings.  int appStgCnt =      ConfigurationManager.AppSettings.Count;  string newKey = "NewKey" + appStgCnt.ToString();  string newValue = DateTime.Now.ToLongDateString() +     " " + DateTime.Now.ToLongTimeString();  config.AppSettings.Settings.Add(newKey, newValue);  // Save the configuration file.  config.Save(ConfigurationSaveMode.Modified);  // Force a reload of the changed section. This   // makes the new values available for reading.  ConfigurationManager.RefreshSection(sectionName);  // Get the AppSettings section.  AppSettingsSection appSettingSection =    (AppSettingsSection)config.GetSection(sectionName);  Console.WriteLine();  Console.WriteLine("Using GetSection(string).");  Console.WriteLine("AppSettings section:");  Console.WriteLine(    appSettingSection.SectionInformation.GetRawXml());}

  

转载于:https://www.cnblogs.com/hualiu0/p/4941661.html

你可能感兴趣的文章
浏览器安全-恶意网址拦截
查看>>
C++基础①命名空间结构体和引用
查看>>
在一个数组中搜索是否可以跟给定数组相匹配的键和值并返回
查看>>
如果myeclipse突然报错
查看>>
两个线程的交替运行
查看>>
Jetty之Trie树
查看>>
项目经理笔记一
查看>>
通过IP地址获取地理位置
查看>>
计算机字符编码从0/1到UTF-8
查看>>
[原]Jenkins(三)---Jenkins初始配置和插件配置
查看>>
Cache Plugin 实现过程
查看>>
HBase Compaction详解
查看>>
TCP服务器端口转发: netsh
查看>>
PhoneGap入门经典——理解PhoneGap应用程序基础
查看>>
2016OSC源创会年终盛典-架构与数据专场-张千明
查看>>
nginx实现rtmp,flv,mp4流媒体服务器
查看>>
46.tornado绑定域名或者子域名泛域名的处理
查看>>
Elasticsearch 2.2.0 节点发现详解
查看>>
Elasticsearch 2.2.0 插件篇:安装
查看>>
文本过滤--sed 1
查看>>