萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> .net編程 >> C#獲取系統環境變量

C#獲取系統環境變量

class="area">

using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
namespace test2
{
class Program
{
static void Main(string[] args)
{
// 把環境變量中所有的值取出來,放到變量environment中
IDictionary environment = Environment.GetEnvironmentVariables();

// 打印表頭
Console.WriteLine( "環境變量名\t=\t環境變量值 ");

// 遍歷environment中所有鍵值
foreach (string environmentKey in environment.Keys)
{
// 打印出所有環境變量的名稱和值
Console.WriteLine( "{0}\t=\t{1} ", environmentKey, environment[environmentKey].ToString());
}
Console.Read();
}
}
}

copyright © 萬盛學電腦網 all rights reserved