# Installing the C# CSNet Library

In order to utilize the C# Library you need to add the NuGet package to you project &#x20;

<https://www.nuget.org/packages/Centr.NetCS>

[Github Repository](https://github.com/akaitrade/Centre.NetCS)

{% tabs %}
{% tab title="Package Manager" %}

```bash
Install-Package Centr.CSNet -Version 2.0.0
```

{% endtab %}

{% tab title=".NET CLI" %}

```
dotnet add package Centr.CSNet --version 2.0.0
```

{% endtab %}

{% tab title="PackageReference" %}

```
<PackageReference Include="Centr.CSNet" Version="2.0.0" />
```

{% endtab %}

{% tab title="Paket CLI" %}

```
paket add Centr.CSNet --version 2.0.0
```

{% endtab %}

{% tab title="Script & Interactive" %}

```
#r "nuget: Centr.CSNet, 2.0.0"
```

{% endtab %}

{% tab title="Cake" %}

```
// Install Centr.CSNet as a Cake Addin
#addin nuget:?package=Centr.CSNet&version=2.0.0

// Install SauceControl.Blake2Fast as a Cake Tool
#tool nuget:?package=Centr.CSNet&version=2.0.0
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://centr.gitbook.io/netcs/getting-started/installing-the-c-csnet-library.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
