Early vs Late Binding, reflection, and type dynamic in C#
Most script languages use late binding and most compiled languages use early binding; C#, although a compiled language and thus an early binding one, has reflection for late binding. In this post we will explore early & late binding in C# with theory and samples.
Read More »Early vs Late Binding, reflection, and type dynamic in C#