Created
January 25, 2019 02:42
-
-
Save isdaviddong/87e35eee9608ef734f9c4b44d7e08a1a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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