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