Haceau.Google.Translate是一个类库,用于向Google翻译发出请求并获取返回的数据。
- 导入dll文件
- 添加using Haceau.Google
- 创建HttpClient类的实例(例:HttpClient httpClient = new HttpClient())
- 创建Translation类的实例,参数1为源语言(可忽略,默认为zh-cn),参数2为目标语言(可忽略,默认为en),参数3为HttpClient(例:Translation t = new Translation("en", "ja", httpClient))
- 使用Translate方法获取结果(例:t.Translate("hello world!"))