Correct Method To Define Operator Is #440
Correct method to define + operator is?
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Object Oriented Concepts - Introduction of Overloaded Operators - Quiz No.1.
Correct method to define + operator is?
public sample operator +(int a, int b)
public abstract operator +(int a, int b)
public static sample operator +(int a, int b)
public abstract sample operator +(int a, int b)