标签: c# arrays visual-studio synthesizer
我目前正在尝试制作一个包含3个可能的文本值的数组,例如hi,hello和hey for speech synthesizer我只是不知道如何让它随机地说出其中一个值?。
答案 0 :(得分:0)
使用此代码:
string[] words=new string[]{"hi","Hello","Hey"}; Random r = new Random(); int i= r.Next(0, 2); string randomWord= words[i];