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 of this github repogitory!