Parameter.SetValueString
Method
Description:
Set the parameter value according to the input string.
Set the parameter value according to the input string.
Remarks:
The method only applies to parameters of value types.
The method only applies to parameters of value types.
Examples
public bool SetWithValueString(Parameter foundParameter)
{
bool result = false;
if (!foundParameter.IsReadOnly)
{
//If successful, the result is true
result = foundParameter.SetValueString("-22\'3\"");
}
return result;
}