Dynamic Language Runtime
Learn to use the dynamic typing capabilities of .NET.
We'll cover the following...
Introduction
Although C# is a statically-typed language, some dynamic features have been added in recent versions of the language. A new functionality called Dynamic Language Runtime (DLR) was added in .NET 4.0.
To understand the meaning of this feature, we should consider the difference between statically and dynamically-typed languages. In ...