The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Decimal::Increment Operator (Decimal)
.NET Framework (current version)
Increments the Decimal operand by 1.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- d
-
Type:
System::Decimal
The value to increment.
| Exception | Condition |
|---|---|
| OverflowException |
The Increment method defines the operation of the increment operator for Decimal values. It enables code such as the following:
using System; public class Example { public static void Main() { Decimal number = 1079.8m; Console.WriteLine("Original value: {0:N}", number); Console.WriteLine("Incremented value: {0:N}", ++number); } } // The example displays the following output: // Original value: 1,079.80 // Incremented value: 1,080.80
Some languages (such as Visual Basic) that lack an increment operator can call the Increment method directly, as the following example shows.
Module Example Public Sub Main() Dim number As Decimal = 1079.8d Console.WriteLine("Original value: {0:N}", number) Console.WriteLine("Incremented value: {0:N}", Decimal.op_Increment(number)) End Sub End Module ' The example displays the following output: ' Original value: 1,079.80 ' Incremented value: 1,080.80
If your language does not support custom operators, call the Add method instead, as the following example shows.
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: