I'm been looking at making my own player for tracked music formats (.mod .xm .s3m, and so on). I managed to find quite a lot of different open source libraries for playing tracked music implemented in C++, and also some closed sourced DLLs that I can use. But I would like to have the tracker player code in native C# so it's easily ported to Mono and maybe even WP7.
I've started a little on making it myself by trying to port one of the open source C++ tracker players to C#. It's coming along slowly. I'm able to open a .mod file and read all the data about the tracks. But actually playing the samples correctly is a little bit harder. And to port it completely and get it to work correctly is going to take quite a long time.
So if anyone knows where there is C# source code for playing tracked music available for download, or if anyone is sitting on a C# code that is able to play tracked music correctly, I would be forever grateful if this person would like to share it with me.
EDIT (Found an answer on my own question):
Since this thread been locked I'll just place the resources I found here in the qustion.
There is a good open-source, C# library for playing tracked music called SharpMod. It supports .mod, .xm and .s3m. There is three implementations of this library; XNA, Silverlight and NAudio. This means that it you should be able to play tracked music with this library on both XBox360, Windows Phone 7, ordinary Windows (with the NAudio implementation) and even through the Web (with Silverlight (And with some luck it may even work with Mono Moonlight))
The Windows version uses NAudio, which also is an open-source library.
Both SharpMod and NAudio is released with Microsoft Public License (Ms-PL). Which basically means that you are free to use these libraries in you own code.
Links to these libraries:
http://sharpmod.codeplex.com/
http://naudio.codeplex.com/