April 2013
Intermediate to advanced
1700 pages
92h 51m
English
To finish off our overview of DynamicObject and DynamicMetaObject, let’s take a quick look at the various operations that can be specialized by overriding a method on those base classes. Some of those operations have a C# notation, whereas others exist in dynamic languages only:
Binary operations, such as mathematical logical operators and (in)equality operators. For example, a + b, a > b, a && b.
Unary operations, such as logical negation or complement or numeric minus or plus. For example, -a, !a.
Getting and setting members ...
Read now
Unlock full access