google-api-for-dotnet
- 授权协议: MIT
- 开发语言: C# .NET
- 操作系统: Windows
- 软件首页: http://code.google.com/p/google-api-for-dotnet/
软件介绍
这是 .NET 平台对Google API的封装,包括:搜索、翻译等;这是非官方的开发包。
示例代码:
string text = "我喜欢跑步。";
TranslateClient client = new TranslateClient(/* Enter the URL of your site here */);
string translated = client.Translate(text, Language.ChineseSimplified, Language.English);
Console.WriteLine(translated);
// I like running.
需要 .NET 3.5 SP1 的支持。
Eloquent JavaScript
Marijn Haverbeke / No Starch Press / 2011-2-3 / USD 29.95
Eloquent JavaScript is a guide to JavaScript that focuses on good programming techniques rather than offering a mish-mash of cut-and-paste effects. The author teaches you how to leverage JavaScript's......一起来看看 《Eloquent JavaScript》 这本书的介绍吧!
