在这里,我们将了解 Environment 类的 SetEnvironmentVariable() 方法。此方法用于设置环境变量的值。
用法:
void Environment.SetEnvironmentVariable(string var, string val);
参数:
- var:环境变量名
- val:我们存储到变量中的值
返回值:
它不返回任何值。
异常:
- System.Security.SecurityException
- System.ArgumentNullException
- System.ArgumentException
程序:
下面给出了演示使用 Environment 类的 SetEnvironmentVariable() 方法的源代码。给定的程序已成功编译并执行。
using System;
using System.IO;
class Sample
{
//Entry point of Program
static public void Main()
{
string Var_Name = "VAR1";
string Var_Value = "True";
if (Environment.GetEnvironmentVariable(Var_Name) == null)
{
Environment.SetEnvironmentVariable(Var_Name, Var_Value);
Console.WriteLine("Value stored in environment variable");
}
else
{
Console.WriteLine("Value already stored in environment variable");
}
}
}
输出:
Value stored in environment variable Press any key to continue . . .
相关用法
- C# Environment GetCommandLineArgs()用法及代码示例
- C# Environment FailFast()用法及代码示例
- C# Environment Exit()用法及代码示例
- C# Enum Equals()用法及代码示例
- C# Enum CompareTo()用法及代码示例
- C# Enum ToObject()用法及代码示例
- C# Enum Format()用法及代码示例
- C# Enum Parse()用法及代码示例
- C# Decimal.FromOACurrency()用法及代码示例
- C# Int32.CompareTo用法及代码示例
- C# File.WriteAllLines(String, IEnumerable<String>)用法及代码示例
- C# Type.GetTypeHandle()用法及代码示例
- C# Uri.IsBaseOf()用法及代码示例
- C# String.ToUpperInvariant用法及代码示例
- C# File.Copy(String, String, Boolean)用法及代码示例
- C# Uri.IsHexEncoding()用法及代码示例
- C# Char.TryParse()用法及代码示例
- C# Math Cosh()用法及代码示例
- C# Int64.Equals用法及代码示例
- C# Convert.ToInt16(String, IFormatProvider)用法及代码示例
注:本文由纯净天空筛选整理自 C# program to demonstrate the use of GetEnvironmentVariable() method of Environment class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。