Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 C# 代码中获取 windows 环境变量。
例如在 C# 文件中,替换D:\为%var%. var 的值作为环境变量存储在 windows 中。
D:\
%var%
谢谢
使用 System.Environment 类。
方法:
System.Environment.GetEnvironmentVariable()
和
System.Environment.SetEnvironmentVariable()
myvalue = System.Environment.GetEnvironmentVariable(nameofthedesiredVar);
这是命令。