I am attempting to follow an example I found online but my SortedDictionary is not working. Also, if you have any better ideas for MP3 song management let me know as well.
public SortedDictionary<String, Song> songs;
public SortedDictionary<String, Song> songs;
Song tempSong = songs.Values[0]; MediaPlayer.Play(tempSong);
Quote
Error 107 Cannot apply indexing with [] to an expression of type 'System.Collections.Generic.SortedDictionary<string,Microsoft.Xna.Framework.Media.Song>.ValueCollection' C:\Users\Jeff\Documents\Visual Studio 2010\Projects\3DgameTest\3DgameTest\3DgameTest\clsGame1.cs 493 29 3DgameTest