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

this() public méthode

Gets or sets a photo based on the index in the collection.
public this ( int index ) : Photo
index int
Résultat Photo
        public Photo this[int index]
        {
            get
            {
                return (Photo)List[index];
            }
            set
            {
                List[index] = value;
            }
        }