少年乘勇气,百战过乌孙。这篇文章主要讲述App.config自定义节点读取相关的知识,希望能为你提供帮助。
< ?xml version="1.0" encoding="utf-8"?> < configuration> < !--< otherconfig configSource="XmlConfigother.config" /> --> < otherconfiga="1111" b="2222" c="333"/> < /configuration>
public class OtherConfigInfo : ConfigurationSection { /// < summary> /// 获取配置信息 /// < /summary> /// < returns> < /returns> public static OtherConfigInfo GetConfig() { return GetConfig("otherconfig"); } /// < summary> /// 获取配置信息 /// < /summary> /// < param name="sectionName"> xml节点名称< /param> /// < returns> < /returns> public static OtherConfigInfo GetConfig(string sectionName) { OtherConfigInfo section = (OtherConfigInfo)ConfigurationManager.GetSection(sectionName); if (section == null) throw new ConfigurationErrorsException("Section " + sectionName + " is not found."); return section; }[ConfigurationProperty("a", IsRequired = false)] public string a { get { return (string)base["a"]; } set { base["a"] = value; } }[ConfigurationProperty("b", IsRequired = false)] public string b { get { return (string)base["b"]; } set { base["b"] = value; } }[ConfigurationProperty("c", IsRequired = false)] public string c { get { return (string)base["c"]; } set { base["c"] = value; } } }
//调用方法 OtherConfigInfo configInfo = OtherConfigInfo.GetConfig(); Console.WriteLine(configInfo.a);
【App.config自定义节点读取】
推荐阅读
- Shareinstall一一可以解决APP大大小小的问题
- Android 实现锚点定位
- appium原理及api
- Android 初始化语言 --init.rc
- Android源码分析ServiceManager服务分析
- android环境的搭配
- Intellij Idea创建Android项目
- Android应用开发基础--Adapter
- android studio设置作者