What is Operator Overloading in .NET?

What is Operator Overloading in .NET?

Operator overloading is the most evident example of Polymorphism. In operator overloading, an operator is ‘overloaded’ or made to perform additional functions in addition to what it actually does. For e.g. we can overload the “+” operator to add two complex numbers or two imaginary numbers.

X= a + b //+ is overloaded to add two integers, float etc
Few operators like :: cannot be overloaded.
What is Finalize method in .NET?
Object.Finalize method in .NET is typically used to clean and release unmanaged resources like OS files, window etc....
What are the concepts of DISPOSE method in .NET?
Dispose method belongs to IDisposable interface. It is used to free unmanaged resources like files, network connection etc.....
Serialization in .NET
Serialization in .NET - System.Runtime.Serialization namespace provides Serialization in .NET...
Post your comment