Skip to content

Instantly share code, notes, and snippets.

@kratzky
Created August 2, 2023 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kratzky/fcad49b91f0551868af86039d15bb9f4 to your computer and use it in GitHub Desktop.
Save kratzky/fcad49b91f0551868af86039d15bb9f4 to your computer and use it in GitHub Desktop.
using System;
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
GetBalance();
Console.ReadLine();
}
public static async void GetBalance()
{
TwoCaptcha.TwoCaptcha _processor = new TwoCaptcha.TwoCaptcha("");
Console.WriteLine(await _processor.Balance());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment