Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 477 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 477 Bytes

GoogleTranslateApi

Free Api for Google Translate

Usage:

// Namespace: GoogleTranslateApi
// Constructor Parameters: GoogleTranslator(SourceLanguage, TargetLanguage);
GoogleTranslator translate = new GoogleTranslator(Language.Portuguese, Language.English);

// This Function Will return the Translated Text
string TranslatedText = translate.Text("Olá Mundo");

// In a assynchronous context
string TranslatedText = await translate.GetTextAsync("Olá Mundo");