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.
有没有办法从 WF 4.0 工作流程中创建新的环境变量,或者如果它已经存在则更新现有的环境变量?
您可以在代码活动中设置环境变量。
您可以使用 System.Activities.Statements.InvokeMethod 活动来调用 System.Environment.SetEnvironmentVariable 静态方法。
在参数设置中,您需要传递 2 个“输入”参数。第一个是环境变量的名称,第二个是值。