Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What is Operator Overloading in .NET
What is Operator Overloading in .NET?
✍: Guest
It provides a way to define and use operators such as +, -, and / for user-defined classes
or structs. It allows us to define/redefine the way operators work with our classes and
structs. This allows programmers to make their custom types look and feel like simple
types such as int and string.
VB.NET till now does not support operator overloading. Operator overloading is done
by using the “Operator” keyword.
2007-10-23, 5219👍, 0💬
Popular Posts:
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...
If we inherit a class do the private variables also get inherited ? Yes, the variables are inherited...
What is the difference between "printf(...)" and "sprintf(...)"? sprintf(...) writes data to the cha...
.NET INTERVIEW QUESTIONS - What are types of compatibility in VB6? There are three possible project ...
How To Fade Image Edges to Background Colors? - PSP Tutorials - Fading Images to Background Colors w...