string class : Value(string) setter
Description
This setter will change only the value without changing the reference value.
Syntax
stringInstance.Value = newValue
Arguments
Class | Name | Description |
string | newValue | The new value. |
Return value
None
Sample code
//anyString is a instance of string type.
anyString.Value = "new string value.";
Notes
None
Links for reference
None