Nexus.Client.ModManagement.Scripting.ModScript.ModScriptInterpreterContext.CombinePaths C# (CSharp) Method

CombinePaths() public method

Combines the given paths, and stores it in the specified variable.
public CombinePaths ( string p_strVariableName, string p_strPath1, string p_strPath2 ) : void
p_strVariableName string The name of the variable in which to store the conbined path.
p_strPath1 string The first path to combine.
p_strPath2 string The second path to combine.
return void
		public void CombinePaths(string p_strVariableName, string p_strPath1, string p_strPath2)
		{
			Variables[p_strVariableName] = FunctionProxy.CombinePaths(p_strPath1, p_strPath2);
		}