What are the advantages of DLR?
The various advantages provided by DLR are:
* Allows you to easily implement the dynamic languages to the .NET Framework.
* Provides dynamic features to statically-typed languages. The statically-typed .NET Framework languages, such as C# and Visual Basic can create dynamic objects and use them together with statically-typed objects.
* Implements sharing of libraries and objects, which means that the objects and libraries implemented in one language can be used by other languages using DLR. The DLR also enables interoperation between statically-typed and dynamic languages.
* Enables fast execution of dynamic operations by supporting advance caching.