In the on-premise Microsoft Dynamics NAV world, many integrations with external applications are performed by using DotNet add-ins. The use of DotNet variables in Microsoft Dynamics 365 Business Central in the cloud (SaaS version) is actually not supported.
You can use DotNet variables only if your extension targets the on-premises version of Microsoft Dynamics 365 Business Central. For this, you have to set "target": "Internal" in your app.json file in Visual Studio Code:
A .NET type in the AL language is declared in the following way:
dotnet{ assembly(ASSEMBLY_NAME) { type(DOTNET_TYPE; ALIAS){} }}
In preceding code, we can ...