Skip to content
This repository was archived by the owner on Sep 19, 2020. It is now read-only.

Latest commit

 

History

History
36 lines (28 loc) · 938 Bytes

File metadata and controls

36 lines (28 loc) · 938 Bytes

circles.NET

An asynchronous .NET Standard wrapper for the osu! api
Nuget

Get Started

using circles.NET;

class SampleProgram
    {
        static async Task Main(string[] args)
        {
            //Getting user information on Cookieizi
            var x = new CirclesAPIClient("<YOUR API KEY HERE>");
            var user = x.GetUsersAsync("Cookiezi");

            foreach (var field in typeof(APIUser).GetProperties())
            {
                Console.WriteLine($"{field.Name}: {field.GetValue(user[0])}");
            }
            Console.ReadLine();
        }
    }

Documentation

Markdown documentation avalaible