Correct Way To Overload Operator #310
Correct way to overload +operator?
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 - Polymorphism - Quiz No.1.
Correct way to overload +operator?
public sample operator + (sample a, sample b)
public abstract operator + (sample a,sample b)
public static sample operator + (sample a, sample b)
all of the mentioned