int class : Dec(int) method
Description
After returning a new instance with the current value, decrement the value of the caller instance by the argument.
Syntax
intInstance.Dec(int decvalue)
Arguments
Class | Name | Description |
int | decvalue | Decrement value. |
Return value
Class | Description |
int | A new instance with the same value as the caller instance. |
Sample code
int caller = 5;
int newInstance = caller.Dec(3);
// newInstance == 5 / caller == 2
Notes
An exception is raised if the instance value exceeds the minimum of int.
Links for reference
None