Arguments
C# Methods for Core > Arguments
SetArgument
Set an argument to be used in subsequent sub-actions
public void SetArgument(string variableName, object value)
TryGetArg
Load an argument and parse it into a C# variable type
0.2.3
public bool TryGetArg<T>(string argName, out T& value)
0.2.3
public bool TryGetArg(string argName, out Object& value)
Â