vs 2005中类库如何访问 app.config

来源:互联网 发布:html2canvas.js demo 编辑:程序博客网 时间:2024/06/03 05:45


  #region 取得Lib的App.config的连接字符串


  try


  {


  string fileFullPath = Assembly.GetExecutingAssembly().CodeBase.Replace("[url=file:///]file:///", string.Empty);


  string filePath = fileFullPath.Substring(0, fileFullPath.LastIndexOf("/")) + "/App.config";


  if (document == null)


  {


  document = new XmlDocument();


  }


  document.Load(filePath);


  connectionString = document.SelectSingleNode(@"/configuration/appSettings/add[@key='connString']").Attributes["value"].Value;


  }


  catch (XmlException ex)


  {


  throw new XmlException(ex.Message);


  }


  #endregion

原创粉丝点击