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