StringUtils ExpandEnvironmentVariables Method C# API
Expands any environment variables in the specified text.

Namespace: Facilita.Util
Assembly: fc_clr (in fc_clr.dll) Version: 9.5.5.77
Syntax

public static string ExpandEnvironmentVariables(
	string arg
)

Parameters

arg
Type: System String
The text to parse.

Return Value

The text, with any environment variables expanded.
Remarks

Any environment variables in the form %VARIABLE% will be replaced with the value of the environment variable on the injector machine at runtime.
See Also