# Avara C# API Library The Avara C# SDK provides convenient access to the [Avara REST API](https://docs.avarasoftware.com) from applications written in C#. ## Installation ```bash git clone git@github.com:stainless-sdks/avara-csharp.git dotnet add reference avara-csharp/src/Avara ``` ## Requirements This library requires .NET Standard 2.0 or later. ## Usage See the [`examples`](examples) directory for complete and runnable examples. ```csharp AvaraClient client = new(); StudyCreateParams parameters = new() { Severity = Severity.Normal, StudyDescription = "Brain MRI with Contrast", StudyInstanceUid = "1.3.6.1.4.1.62853.20250130.1738242672936.234543143652", }; var study = await client.Viewer.Studies.Create(parameters); Console.WriteLine(study); ```