Reputation: 22920
What is the DLR Layer Responsibility?
Upvotes: 3
Views: 146
Reputation: 64933
"DLR" is here for supporting dynamic languages - in other words interpreted ones - in the Microsoft .NET Framework.
Upvotes: 0
Reputation: 29632
From the documentation at http://msdn.microsoft.com/en-us/library/dd233052.aspx.
The purpose of the DLR is to enable a system of dynamic languages to run on the .NET Framework and give them .NET interoperability. The DLR introduces dynamic objects to C# and Visual Basic in Visual Studio 2010 to support dynamic behavior in these languages and enable their interoperation with dynamic languages.
Upvotes: 5