C# Unary Operators

The C# Unary operators are also called increment and decrement operators. These C# unary operators generally used in the loop concepts.  The C# Increment Operators are of two types: pre-increment(++i) and post-increment(i++). And the C# Decrement Operators are also of two types: post-decrement(i–) and pre-decrement(–i). Generally, the difference in C# post-increment (or post-decrement) and pre-increment … Read more