Click here to Skip to main content
16,007,472 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
how to store many files.wav in C# and how to play play them in C#
Posted
Comments
Sergey Alexandrovich Kryukov 1-Aug-11 10:34am    
Wav or mp3? The title and the body of question ask different things. Use "Improve question".
--SA

What do you mean by "store files in C#"? You can play them using this code:
C#
System.Diagnostics.Process.Start("c:\mysongs\mysong.mp3");
 
Share this answer
 
Here you go

Playing a WAV File with C#[^]
Playing MP3 files with C#[^]

OP wrote:
how to store many files.wav in C#
Not clear, anyway see the below link.
How to copy and save an audio file using c#?[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900