Initial set up

circle-exclamation

Before starting to configure this licensing system in your program you must download our class and integrate it into your program!

C#
using System;

namespace ChiperIO_Example
{
    class Program
    {
    
        public static readonly Swifty exampleApp = 
            new Swifty("Application name", "A-Key (Application Key)", "ID-Encryption", "Application version");
                
        static void Main(string[] args)
        {
            // Securely connecting to our API with your application data
            exampleApp.Connect();                        
        }
    }
}

Last updated

Was this helpful?