Correct Way To Define Operator Method Or To Perform Operator #439
Correct way to define operator method or to perform operator overloading 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 way to define operator method or to perform operator overloading is?
public static op(arglist) { }
public static retval op(arglist) { }
public static retval operator op(arglist) { }
All of the mentioned