newtelligence.DasBlog.Web.Services.Rsd.RssServiceCollection.Insert C# (CSharp) Méthode

Insert() public méthode

Inserts an element into the RssServiceCollection at the specified index
public Insert ( int index, RsdService value ) : void
index int /// The index at which the RsdService is to be inserted. ///
value RsdService /// The RsdService to insert. ///
Résultat void
        public virtual void Insert(int index, RsdService value)
        {
            this.List.Insert(index, value);
        }