C# program to overload binary divide operator '/'

In this C# program, we are going to learn how to overload a binary divide operator (/)? Here is an example of binary divide (/) operator overloading in C#.
Submitted by IncludeHelp, on March 15, 2018

Here we will create a sample class with data member X. Assign value using Set() method and print data member value using printValue() method.

Program to overload binary divide '/' 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(40);
            S2.Set(20);

            S3 = S1 / S2;

            S1.printValue();
            S2.printValue();
            S3.printValue();
        }
    }
}

Output

Value : 40
Value : 20
Value : 2

In this program we created two object of class sample S1, S2 and S3. Then divide value of S1 from S2 and assigned to S3.

C# Operator Overloading Programs »


ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT


Top MCQs

Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.