Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.4K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
School Learning
11.1K+ articles
Misc
7.7K+ articles
C#
2.0K+ articles
CSharp-Basics
39+ articles
CSharp-keyword
31+ articles
CSharp Operators
5 posts
Recent Articles
C# Program to Overload Unary Increment (++) and Decrement (--) Operators
Last Updated: 23 July 2025
In C#, overloading is the common way of implementing polymorphism. It is the ability to redefine a function in more than one form. A user can implement method overloading ...
read more
C#
Picked
CSharp Operators
CSharp-programs
sizeof() Operator in C#
Last Updated: 28 May 2020
The sizeof() operator is used to obtain the size of a data type in bytes in bytes. It will not return the size of the variables or instances. Its return type is always int...
read more
C#
CSharp-keyword
CSharp Operators
C# | is Operator Keyword
Last Updated: 05 August 2021
In the development of the software, typecasting is an inescapable thing. In many cases, one needs to convert an object(Type) into another object(Type) and sometimes got In...
read more
C#
CSharp-keyword
CSharp Operators
C# | Operator Overloading
Last Updated: 11 July 2025
Prerequisite: Operators in C#The concept of overloading a function can also be applied to operators. Operator overloading gives the ability to use the same operator to do ...
read more
Misc
C#
CSharp Operators
Operators in C#
Last Updated: 20 April 2026
In C#, Operators are special types of symbols which perform operations on variables or values. It is a fundamental part of language which plays an important role in perfor...
read more
C#
CSharp-Basics
CSharp Operators
✕