APPLY LATE BINDING IN .NET 4.0 AND DIFFERENTIATE IT WITH VAR KEYWORD
Posted
on C# Corner
See other posts from C# Corner
Published on Apr 18, 2010
Indexed on
2010/04/18
15:44 UTC
Read the original article
Hit count: 435
Filed under:
Latebinding is a common term among VB6.0 programmers. C# was always strongly typed. But in 3.x version they introducded var keyword which suporting dynamic binding. But not late binding. After 4.0 relese they came up with dynamic keyword. This fully supporting late binding. Below explaining the difference between var and dynamics. Also a simple example saying where we can use dynamics in C#
© C# Corner or respective owner