.wav ファイルがあり、このバイト形式を XML に書き込みます。この曲を自分のフォームで再生したいのですが、正しいかどうか確信が持てず、うまくいきません。Str は私のファイルのバイト形式です。
byte[] soundBytes = Convert.FromBase64String(str);
MemoryStream ms = new MemoryStream(soundBytes, 0, soundBytes.Length);
ms.Write(soundBytes, 0, soundBytes.Length);
SoundPlayer ses = new SoundPlayer(ms);
ses.Play();