|
net interface tutorial.
|
|
Net interface together with dll tool allows you to use darkbasic commands in your .net third party command dlls.
|
|
Start a new dll project in your ide of choice, for details see the dll_tool documentation
|
|
Net_tool uses dll_tool to export a function called Do_It so create the Do_It function.
C# code
using System;
public class MyClass
{
public static void Do_It()
{
//
}
}
Vb.net code Imports System Public Class MyClass Public Shared Sub Do_It() REM End Sub End ClassNet_tool requires dll_Tool v0.11 or later so check your version of dll_tool is new enough. |