Chapter 14. Dynamic binding in a static language

 

This chapter covers

  • What it means to be dynamic
  • How to use dynamic typing in C# 4
  • Examples with COM, Python, and reflection
  • How dynamic typing is implemented
  • Reacting dynamically

C# has always been a statically typed language, with no exceptions. There have been a few areas where the compiler has looked for particular names rather than interfaces, such as finding appropriate Add methods for collection initializers, but there’s been nothing truly dynamic in the language beyond normal polymorphism. That changes with C# 4—at least partially. The simplest way of explaining it is that there’s a new static type called dynamic, which you can try to do almost anything with at compile time and let the framework sort it out at execution time. Of course, there’s more to it than that, but that’s the executive summary.

14.1. What? When? Why? How?

 
 
 
 

14.2. The five-minute guide to dynamic

 
 

14.3. Examples of dynamic typing

 
 

14.4. Looking behind the scenes

 
 

14.5. Implementing dynamic behavior

 
 

14.6. Summary

 
 
 
sitemap

Unable to load book!

The book could not be loaded.

(try again in a couple of minutes)

manning.com homepage