string Microsoft.Translator.Translate(appId, text, from, to);其中appid究竟是什么?
云淡天晴 2010-12-08 01:11:55 http://msdn.microsoft.com/en-us/library/ff512437.aspx
这里有个微软官方的例子,但是我不知道
string result;
TranslatorService.LanguageServiceClient client = new TranslatorService.LanguageServiceClient();
result = client.Translate("myAppId", "Translate this text into German", "en", "de");
Console.WriteLine(result);
假设是我,这个myAppID 应该添什么东西? 我如何取得?
谢谢大家?