乐乐

乐乐的博客园
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

App config file in CSharp

Posted on 2007-12-28 16:19  带你去月球  阅读(987)  评论(0编辑  收藏  举报
using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication1
{
    
class Program
    
{
        
static void Main(string[] args)
        
{

            Console.WriteLine(System.Configuration.ConfigurationManager.AppSettings[
"username"]);
            Console.WriteLine(System.Configuration.ConfigurationManager.AppSettings[
"password"]);
        }

    }

}

App.config file:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  
<appSettings>
    
<add key="username" value="wxf"/>
    
<add key="password" value="fxw"/>
  
</appSettings>
</configuration>

Output results:
wxf
fxw
无觅相关文章插件,快速提升流量