SwfDotNet.IO.Tags.Types.AssertCollection.Insert C# (CSharp) Method

Insert() public method

Inserts at the specified index.
public Insert ( int index, Assert value ) : void
index int The index.
value Assert The value.
return void
        public void Insert(int index, Assert value)
        {
            List.Insert(index, value as object);
        }