Home »
.Net »
C# Programs
C# program to overload binary plus operator '+'
In this article, we will learn about how to overload a binary plus operator in C#? Here we will create a sample class with two data member X. assign value using Set method.
Submitted by IncludeHelp, on February 22, 2018
Problem statement
Write a C# program to overload binary plus operator '+'.
Program to overload unary plus (+) operator in C#
using System;
using System.Collections;
namespace ConsoleApplication1
{
class Sample
{
private int X;
public Sample()
{
X = 0;
}
public void Set(int v)
{
X = v;
}
public static Sample operator +(Sample S1, Sample S2)
{
Sample temp = new Sample();
temp.X = S1.X + S2.X;
return temp;
}
public void printValue()
{
Console.WriteLine("Value : {0}", X);
}
}
class Program
{
static void Main()
{
Sample S1 = new Sample();
Sample S2 = new Sample();
Sample S3 = new Sample();
S1.Set(10);
S2.Set(20);
S3 = S1 + S2;
S1.printValue();
S2.printValue();
S3.printValue();
}
}
}
Output
Value : 10
Value : 20
Value : 30
In this program, we created three objects of class sample S1, S2 and S3. Then add value of S1 and S2 and assigned to S3.
C# Operator Overloading Programs »