Skip to content
This repository has been archived by the owner on Mar 7, 2019. It is now read-only.

Latest commit

 

History

History
16 lines (12 loc) · 553 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 553 Bytes

CleverbotCOM.NET NuGet version License: MIT

A .NET wrapper for the Cleverbot API.

C# Example:

  using CleverbotCOM.NET;


  Cleverbot cleverbot = new Cleverbot("API-KEY");
  
  while (true)
  {
      string question = Console.ReadLine();
      Console.WriteLine("Cleverbot: " + cleverbot.Ask(question));
  }