Skip to content

Instantly share code, notes, and snippets.

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

  • Save isdaviddong/87e35eee9608ef734f9c4b44d7e08a1a to your computer and use it in GitHub Desktop.

Select an option

Save isdaviddong/87e35eee9608ef734f9c4b44d7e08a1a to your computer and use it in GitHub Desktop.
private void button1_Click(object sender, EventArgs e)
{
var result = MSTranslatorUtility.Detect(this.textBox1.Text);
this.textBox2.Text = $"最有可能的語系是 : {result.FirstOrDefault().language}";
this.textBox2.Text += $"\r\n分數 : {result.FirstOrDefault().score}";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment