Search code examples
bindingdynamic-bindingstatic-binding

What is the difference between Early and Late Binding?


What is the difference between early and late binding?


Solution

  • The short answer is that early (or static) binding refers to compile time binding and late (or dynamic) binding refers to runtime binding (for example when you use reflection).