/Text-Captcha-Solver

a library for solving Text Captchas

Primary LanguageC#MIT LicenseMIT

Text-Captcha-Solver

C# Library to solve simple logic questions I have Created back in 2010, I will do some refactoring in the next weeks.

the Library solve varaious types of questions...

Usage:

     TextCaptchaSolver.CaptchaSolver solver = new TextCaptchaSolver.CaptchaSolver();
        try
        {
            return solver.Solve(input);
        }
        catch(Exception ex)
        {
            return null;
        }