- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the overload ability of operators in C#
Here is the list of the operator that can be overloaded in C# and which do not have the capability to overload.
Sr.No | Operator & Description |
---|---|
1 | +, -, !, ~, ++, -- These unary operators take one operand and can be overloaded. |
2 | +, -, *, /, % These binary operators take one operand and can be overloaded. |
3 | ==, !=, <, >, <=, >= The comparison operators can be overloaded. |
4 | &&, || The conditional logical operators cannot be overloaded directly. |
5 | +=, -=, *=, /=, %= The assignment operators cannot be overloaded. |
6 | =, ., ?:, -<, new, is, sizeof, typeof These operators cannot be overloaded. |
Advertisements