A C# wrapper library for interacting with the solved.ac API.
Refer to the solved.ac unofficial API documentation.
using AcNET;
SolvedAPI api = new();
Console.Write(api.GetUser("jyunni").Result.OverRating);This is a .NET Standard 2.1 library.
That means you can use it in any project targeting .NET 5 (C# 9.0) or higher
by simply adding the latest version from NuGet!
For more detailed usage, please refer to the wiki!
All you need is the .NET 8.0 SDK!
For testing, you can create a separate startup project and reference this project for use.