Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
C# ++ Operator
www.amiedd.com Amiedd - Code, Cosplay and Games
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// {
using System;
class Hello
{
static void Main()
{
// }
double d = 1.5;
Console.WriteLine(d); // output: 1.5
Console.WriteLine(++d); // output: 2.5
Console.WriteLine(d); // output: 2.5
// {
}
}
// }
Press desired key combination and then press ENTER.
Prefix increment operator
If you want a more complex example (external libraries, viewers...), use the Advanced C# template
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content