本文介绍了使用C#将英文文本转换为Windows应用程序中的阿拉伯语,中文或泰米尔语的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的所有人,



我想创建一个Windows应用程序,用于将英文文本转换为中文,阿拉伯文,俄文和其他任何语言。法语等,任何人都可以给我一个使用第三方DLL的想法,除了谷歌翻译API。



使用Google.API.Translate;



String text =谢谢

TranslateClient client = new TranslateClient();

client.Translate(text,Language。英语,Language.English);

但是它不接受输入参数作为语言它需要输入参数字符串(即使我在Language.English中提到这也是错误,但是例子在文档中给出的是文件 client.Translate(text,Language.English,Language.English); 这只是。所以请帮我解决这个问题。

谢谢问候,

G Mariappan

Dear All,

I want to create the windows application for converting the english text to any other languages like chinese,arabic,russian & French etc , Can Anyone give me an idea to use the third party dll except google translate API.

Using Google.API.Translate;

String text="Thank you"
TranslateClient client = new TranslateClient("");
client.Translate(text,Language.English,Language.English);
But it is not accepting the input parameters as Language it needs the input parameters string(even i mentioned in "Language.English" this also but it throws error ,but example given in the documentation is file client.Translate(text,Language.English,Language.English); this only.So please help me to sort out this problem.
Thanks & Regards,
G Mariappan

推荐答案



这篇关于使用C#将英文文本转换为Windows应用程序中的阿拉伯语,中文或泰米尔语的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 22:17