Retrieve items from an observable collection at specific indexes

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Wellie
    New Member
    • Apr 2010
    • 2

    Retrieve items from an observable collection at specific indexes

    I am trying to retrieve items at specific index locations from an observable collection.

    I want to retrieve 5 of them from a collection that contains 28 items.

    I'm kinda stuck and I don't know where to start.
  • tlhintoq
    Recognized Expert Specialist
    • Mar 2008
    • 3532

    #2
    myItem1 = MyCollection.It ems[0];
    myItem19 = MyCollection.It ems[18];

    and so on

    Comment

    • Wellie
      New Member
      • Apr 2010
      • 2

      #3
      Thanks Very Much

      Thanks tlhintoq.

      Comment

      Working...