SwfDotNet.IO.Tags.BaseTagCollection.Insert C# (CSharp) Méthode

Insert() public méthode

Insert a base tag at
public Insert ( int index, BaseTag value ) : void
index int index
value BaseTag base tag
Résultat void
        public void Insert(int index, BaseTag value)
        {
            List.Insert(index, value as object);

            try
            {
                this.TagAdded(value);
            }
            catch (Exception) { }
        }