> For the complete documentation index, see [llms.txt](https://phpfreakbd.gitbook.io/licensepoint-lp-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://phpfreakbd.gitbook.io/licensepoint-lp-documentation/master.md).

# Initial Setup

{% hint style="warning" %}

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

{% endhint %}

```
C#

public partial class Login : Form
    {
        static readonly LP api = new LP("Application Name", "Application Secret", "Version");


        public Login()
        {
            InitializeComponent();

            api.Connect();
        }
    }
```
