Wednesday 13 January 2021

Dynamic Overloading

 

The dynamic keyword allows decisions about object type to be deferred until runtime. One benefit of this is that we can make method overloading decisions at runtime rather than having them locked in by the compiler.

Topics include:

  • C#
  • dynamic
  • Polymorphism
  • Overloading
  • Strong typing

No comments:

Post a Comment

The State Pattern

  How many developers does it take to change a lightbulb? With the State pattern, not very many. Topics include: The State Pattern Design Pa...