After adding a reference to iTunes1.13typelibrary, and adding the
using ituneslib;
In the program, I created the itunesApp class, but in the iTunesLib namespace, there are no options for classes such as IITPlayList or the track class, the only classes that show up are the collections. How do I access those classes?

link|improve this question
Could you elaborate on what you are trying to achieve with this library exactly? – Maxim Gueivandov Mar 7 '11 at 10:26
I'm trying to build a small application that fixes up songs in itunes, I wanna be able to browse through the library. I've seen working examples from other sources. – r0nny1l Mar 7 '11 at 19:30
1  
When you say "there are no options for" or "only classes that show up" are you talking about intellisense? You can most definitely declare objects of those types, but they for some reason don't show up in intellisense. – roviuser Mar 8 '11 at 17:05
@roviuser , you're absolutely correct! I guess i'm pretty spoiled with VS2010's Intellisense... – r0nny1l Mar 9 '11 at 12:45
feedback

2 Answers

up vote 1 down vote accepted

Answer from comment: you can declare objects of these types, they just don't show up in intellisense. an example of this is here:

foreach (IITPlaylist pl in iTunes.LibrarySource.Playlists)
{
      foreach (IITTrack tr in pl.Tracks)
      {
           //do work 
      }
}

this code loops through each track in each playlist

link|improve this answer
feedback

It is not clear from your question what you gonna do with the iTunes SDK. Sample application you can get here

Note: C# in iTunes SDK is supported via COM Interop. There're no managed interfaces in iTunes SDK and you have to release objects yourself to avoid memory leaks. When you access some iTunes SDK objects it launches iTunes application. Collections doesn't support IEnumerable interface, so you can't use foreach statement. It is very slow in the collections enumeration.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.