operator overloading in C#

Operator Overloading in C# One of the greatest things you can find in c# is operator overloading capability. This is very awesome and applicable especially in a calculation related solution. We all know what is the easiest way to add two numbers, or two strings, simply by using + operator. Short example: int a = […]