How to use DLLs in Wayfast?
Overview
In this lesson, we are going to analyze how the methods can be included in Wayfast and how they are used in Controls & Actions to developed our application.
How to create a DLL in “Methods” section?
To understand what a DLL is, let’s review its definition:
A DLL is a library that contains code and data that can be used by more than one program at the same time. By using a DLL, a program can be modularized into separate components. Since the modules are separate, the load time of the program is faster. And a module is only loaded when that functionality is requested.
In Wayfast we can include any kind of method to our projects. Initially, we need to click on the “User Info” icon at the top right corner. Select “Methods” option
"Methods” dashboard is displayed with all the listed DLLs in the Solution. We can add a new method or edit anyone previously created.
Once the DLL is generated, we can use it inside our application’s development. In the next lesson, we are going to review an example.
How to associate DLLs to Controls & Actions?
Recap