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

MatsAnd/CleverbotCOM.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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