Exploring Operator Overloading in C#(www.dimecasts.net)
submitted by
dwhittaker(13.1k) 2 years, 4 months ago
Taking a look at how create overloaded operators for your objects.
Operator overloading permits user-defined operator implementations to be specified for operations where one or both of the operands are of a user-defined class or struct type. When creating your own operators there are many different operators which can be overloaded.
+, -, *, /, %, &, |, <<, >> All C# binary operators can be overloaded
+, -, !, ~, ++, –, true, false All C# unary operators can be overloaded
==, !=, <, >, <= , >= All relational operators can be overloaded, but only as pairs. read more...
|category: C#
|Views: 266
tags:
C# another
Everyones tags:
Your Tags: