|
Project Information
Members
Featured
Downloads
Links
|
Provides a simple, unofficial, .NET Framework API for using Google Translate. Now this project is a part of the Google APIs for .NET(http://code.google.com/p/google-api-for-dotnet/) which include more Google APIs such as Search API etc. I will never update here anymore. You can get the latest source code and released files at the Google APIs for .NET(http://code.google.com/p/google-api-for-dotnet/)An updated CLS compatible version of Google Translated API has been released at the Google APIs for .NET(http://code.google.com/p/google-api-for-dotnet/).Example: string text = "我喜欢跑步。";
string translated = Translator.Translate(text, Language.Chinese_Simplified, Language.English);
Console.WriteLine(translated);
// I like running.More results:
|