Using .NET Framework Interfaces

With .NET Framework interoperability in C/AL, you can define variables for .NET Framework interface types. This is useful when you have a class that explicitly implements an interface. In the .NET Framework, when an interface is explicitly implemented, you cannot call methods that belong to the…

Using .NET Framework Generics

In the .NET Framework, you can use generics to customize a method, class, structure, or interface according to the data type that it acts upon. Instead of writing a method, class, structure, or interface for a particular type, you can write it to use any type.…

Autoupdate NAV with C#

This sample application is developed in C# as a library with the project name “ImportFOB”. The DLL “ImportFOB.dll” can be used in a C# Windows application to import the Microsoft Dynamics Navision FOBS into Navision without opening the Navision Object Designer. Bron : The Code Project…