本文介绍了如何在 C# 中获取和设置环境变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何获取环境变量,如果缺少某些内容,请设置值?
How can I get Environnment variables and if something is missing, set the value?
推荐答案
使用 System.Environment 类.
方法
var value = System.Environment.GetEnvironmentVariable(variable [, Target])
和
System.Environment.SetEnvironmentVariable(variable, value [, Target])
将为您完成这项工作.
可选参数 Target
是 EnvironmentVariableTarget
类型的枚举,它可以是:Machine
、Process
之一> 或 用户
.如果省略它,则默认目标是当前进程.
The optional parameter Target
is an enum of type EnvironmentVariableTarget
and it can be one of: Machine
, Process
, or User
. If you omit it, the default target is the current process.
这篇关于如何在 C# 中获取和设置环境变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!