VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/c-sharp-program-to-overload-unary-increment-and-decrement-operators/

⇱ C# Program to Overload Unary Increment (++) and Decrement (--) Operators - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

C# Program to Overload Unary Increment (++) and Decrement (--) Operators

Last Updated : 23 Jul, 2025

In C#, overloading is the common way of implementing polymorphism. It is the ability to redefine a function in more than one form. A user can implement method overloading by defining two or more methods in a class sharing the same name but with different method signatures. So in this article, we will learn how to overload unary increment and decrement operators.

Overloading Decrement Operator

In C#, the decrement operator(--) is used to decrement an integer value by one. It is of two types pre-decrement operator and post decrement operator. When this operator is placed before any variable name then such type of operator is known as pre-decrement operator, e.g., --y whereas when the operator is placed after any variable name then such type of operator is known as post-decrement operator, e.g., y--. We can also overload the decrement operator using the following syntax. Here we will pass the object as the parameter and then set the decrement value to object value and this method will return the decremented value.

Syntax:

public static GFG operator --(GFG obj)
{
 obj.value = --obj.value;
 return obj;
}

Example:

Input : 50
Output : 49

Input : 79
Output : 78

Example:

Output:

Values : 49

Overload Increment Operator

In C#, the increment operator(++) is used to increment an integer value by one. It is of two types pre-increment operator and post-increment operator. When this operator is placed before any variable name then such type of operator is known as pre-increment operator, e.g., ++y whereas when the operator is placed after any variable name then such type of operator is known as post-increment operator, e.g., y++. We can also overload the increment operator using the following syntax. Here we will pass the object as the parameter and then set the increment value to object value and this method will return the incremented value.

Syntax:

public static GFG operator ++(GFG obj)
{
 obj.value = ++obj.value;
 return obj;
}

Example:

Input : 50
Output : 51

Input : 79
Output : 80

Example:

Output:

Values : 51
Comment
Article Tags:

Explore