Hello guys!
I have been here a few times and every time I need help I get a solution from you guys! Okay, I am making a game sort of like an advanced Space Invaders. Anyway, I need some music for the game. I was wondering.... how do I integrate music into my game
Paul

Music in my game in C# EE
Armanchos
For a good example of sound in a C# App that is game related have a look at the following example of SpaceBlitz...
SpaceBlitz is a Version of Space Invaders that uses GDI+ for the graphics, it is also part of the Upgrade your Game Series on the Coding4Fun web site.
LealTing
System.Media.SoundPlayer PlaySoundTest = new System.Media.SoundPlayer(WindowsApplication1.Properties.Resources.[YourAudioFileName]);
PlaySoundTest.Play();
Hope this helps