Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 504 Bytes

README.md

File metadata and controls

22 lines (14 loc) · 504 Bytes

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;
        }