Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法将音频文件(如可以完成的图像)包含到 .NET 的输出 exe 文件中?C#
我一直在环顾四周,哇,这显然没有那么多用?
将您的文件添加到程序集的资源中。
现在你可以这样玩(前提是我将资源命名为 MyWavResource):
System.Media.SoundPlayer player = new System.Media.SoundPlayer(Properties.Resources.MyWavResouce); player.Play();