Skip to content
EntityQ3041988· pop 8· linked from 220 articles

system Platform

Source code

The Dynamic Language Runtime enables language developers to more easily create dynamic languages for the .NET platform. In addition to being a pluggable back-end for dynamic language compilers, the DLR provides language interop for dynamic operations on objects. The DLR has common hosting APIs for using dynamic languages as libraries or for scripting in your .NET applications. This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information see the .NET Foundation Code of Conduct. The best way to install the DLR is through the NuGet DynamicLanguageRuntime package. The best current documentation is in the docs/ directory, in Word and PDF format (it was a Microsoft project, after all). If you have any questions, open an issue, even if it's not an actual bug. The issues are an acceptable discussion forum as well. You will need to have Visual Studio 2022 17.14.26 or later (Windows only) and .NET 10.0 SDK installed on your machine. Engineering build assets such as framework props and CI templates live under eng/. Since the main development is on .NET, Mono bugs may inadvertently be introduced — please report them!

Excerpt from the source-code README · 3,051 chars · not written by Vinony

Article · Русский

Dynamic Language Runtime (DLR; с англ. — «Среда выполнения динамического языка») от Microsoft работает поверх исполняющей среды Common Language Runtime (CLR; с англ. — «Общеязыковая среда выполнения») и предоставляет службы компьютерного языка для динамического языка. Эти услуги включают: * Динамическая система типов, которая будет разделяться между всеми языками, использующими службы DLR. * Метод динамического связывания * Генерация динамического кода * Хостинг API DLR используется для реализации динамических языков в .NET Framework, включая проекты IronPython и IronRuby. Поскольку реализации динамического языка используют общую базовую систему, им должно быть проще взаимодействовать друг с другом. Например, должна быть возможность использовать библиотеки любого динамического языка на любом другом динамическом языке. Кроме того, хостинг API позволяет взаимодействовать со статически типизированными языками интерфейса командной строки, такими как C# и Visual Basic .NET.

Abstract from DBpedia / Wikipedia · CC BY-SA

Available in 8 languages

via Wikidata sitelinks · CC0

dlr · Vinony