0
我目前使用C#語音識別商店詞
if (e.Result.Text == prefix + "who is bill gates") { System.Diagnostics.Process.Start(@"https://en.wikipedia.org/wiki/Bill_Gates"); }
我需要弄清楚我怎麼能只讓
if (e.Result.Text == prefix + "who is" + GET WhoIs) { System.Diagnostics.Process.Start(@"https://en.wikipedia.org/wiki/" + WhoIs); }
我需要它,如果可能的工作動態。我不知道如何做到這一點,任何幫助將不勝感激。