Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 259 Bytes

Nuget.md

File metadata and controls

15 lines (12 loc) · 259 Bytes

acNET

solved.ac API wrapper library for C#. (unofficial)

Example

using acNET;

acAPI api = new();
//sync
Console.Write(api.GetUser("jyunni").Result);
//async
(var info, Exception? ex) = await api.GetUserAsync("shiftpsh");
Console.Write(info);