using System.Collections.Generic;
private static readonly HttpClient client = new HttpClient();
Console.WriteLine("It's Thicc asf");
MakeAGet("https://isthicac.dev/");
public static async void MakeAPost(string uri)
var data = new Dictionary<string, string>
{ "someshit", "goeshere" },
{ "urmmom", "goesin here" },
{ "daddy too", "eats cheese" }
var content = new FormUrlEncodedContent(data);
var response = await client.PostAsync(uri, content);
string strResponse = await response.Content.ReadAsStringAsync();
public static void MakeAGet(string uri){
var response = client.GetStringAsync(new Uri(uri));
Console.WriteLine(response==null);
public static void ERR(bool hi){}