Original author(s) | Microsoft Dynamic Language Runtime Team |
---|---|
Developer(s) | .NET Foundation |
Initial release | April 16, 2010 |
Stable release | 1.3.1
/ December 2, 2021[1] |
Repository | github |
Written in | C# |
Operating system | Windows, macOS, Linux (Debian, Ubuntu) |
Platform | Common Language Infrastructure |
Type | System platform |
License | Apache License 2.0 |
Website | docs |
The Dynamic Language Runtime (DLR) from Microsoft runs on top of the Common Language Runtime (CLR) and provides computer language services for dynamic languages. These services include:
The DLR is used to implement dynamic languages on the .NET Framework, including the IronPython and IronRuby projects.
Because the dynamic language implementations share a common underlying system, it should be easier for them to interact with one another. For example, it should be possible to use libraries from any dynamic language in any other dynamic language. In addition, the hosting API allows interoperability with statically typed CLI languages like C# and Visual Basic .NET.