Skip to content

Instantly share code, notes, and snippets.

@isdaviddong
Created January 25, 2019 02:52
Show Gist options
  • Select an option

  • Save isdaviddong/0da33b6100063891253ad1f61b406a77 to your computer and use it in GitHub Desktop.

Select an option

Save isdaviddong/0da33b6100063891253ad1f61b406a77 to your computer and use it in GitHub Desktop.
var result = MSTranslatorUtility.Translate(this.textBox1.Text, "en"); //zh-Hant 為翻譯成中文
this.textBox2.Text = $"目標語系 : { result.FirstOrDefault().translations.FirstOrDefault().to}";
this.textBox2.Text += $"\r\n翻譯結果 : { result.FirstOrDefault().translations.FirstOrDefault().text}";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment