To use in a C# program, add a reference to the .NET Class Library file
diFirmaSatNet.dll and add the line
using FirmaSAT;
at the top of your code. Here is a simple "Hello World" program.
using System; using FirmaSAT; class Program { static void Main() { int n = General.Version(); Console.WriteLine("Version = {0}", n); } }