Basic c# wrapper Around UrbanDictionary API
Example
using System;
using System.Threading.Tasks;
using Urban.Sharp;
using Urban.Sharp.Response;
namespace Example
{
class Program
{
static async Task Main(string[] args)
{
UrbanObject urban = await UrbanClient.GetDefinitionAsync("loli");
Console.WriteLine(urban.List[0].Definition);
await Task.Delay(-1);
}
}
}