【C#學習筆記】播放wma/mp3文件
阿新 • • 發佈:2017-08-27
con cati ise returns c# 停止 end ext resume
using System; using System.Runtime.InteropServices; namespace ConsoleApplication { class Program { [DllImport("winmm.dll")] public static extern uint mciSendString(string lpstrCommand,string lpstrReturnString, uint uReturnLength, uint hWndCallback); staticvoid Main(string[] args) { /* 指令及參數 功能 open 設備名稱 [type設備型式] [alias別名] 開啟撥放設備 close 設備名稱 關閉撥放設備 play 設備名稱 [from起點] [to終點] 播放 pause 設備名稱 暫停 resume 設備名稱 恢復播放(暫停要繼續撥放時使用) seek 設備名稱 [to位置 | to start | to end] 移到 stop 設備名稱 停止*/ mciSendString("play"+" "+@"01.mp3", null, 0, 0); Console.Read(); } } }
【C#學習筆記】播放wma/mp3文件