FlickrNet.PhotoCollection.Insert C# (CSharp) Méthode

Insert() public méthode

Inserts a Photo into the collection at the given index.
public Insert ( int index, Photo photo ) : void
index int The index to insert the into. /// Subsequent photos will be moved up.
photo Photo The to insert.
Résultat void
        public void Insert(int index, Photo photo)
        {
            List.Insert(index, photo);
        }