摘要:
using System.Speech.Synthesis; //项目引用System.Speech var speech = new SpeechSynthesizer { Volume = 100, Rate = -5 }; speech.SetOutputToWaveFile(path); s 阅读全文
摘要:
void Main() { var list = new List<MusicEntity>(); for (int i = 0; i < 20; i++) { list.Add(new MusicEntity { Id = i, Path = new Random().Next(9999) + " 阅读全文