OPERATOR OVERLOADING IN C# INTERMEDIATE TUTORIAL by Chamuth Chamandana What is Operator Overloading ======================= Operator Overloading is one of a way of implementing Polymorphism in C# (OOP Concepts are going to be discussed in a basics video in future). Operator Overloading can be defined as adding operator functionality to custom types. This operators include all of the arithmetic operators, comparison operators, assignment operators and etc. What we're going to talk about in this video ================================== We're going to develop a class known as Number which is really simple and only has an integer (Int32) Property known as value. We're going to add custom operators overloaded to this class, namely ++, --, + and - operators. Let me know what you want to know more about, in the comments section. If you enjoy please Subscribe to my channel and encourage us by liking our videos!!!