How to play audio from resource

前端 未结 4 970
梦如初夏
梦如初夏 2020-12-20 21:32

I am trying to play audio from a resource using .NET Compact Framework. I added an audio file for the resource property in my application and am trying to use the below samp

4条回答
  •  攒了一身酷
    2020-12-20 21:48

    I got the solution. This code is working very well in .NET Compact Framework:

    // Convert a byte array to a stream
    using (var audioStream = new MemoryStream(Properties.Resources.full_song_wav))
    {
        using (var player = new SoundPlayer(audioStream))
        {
            player.Play()
        }
    }
    

提交回复
热议问题