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

this() public method

Gets or sets the T:Assert at the specified index.
public this ( int index ) : Assert
index int
return Assert
        public Assert this[int index]
        {
            get
            {
                return ((Assert)List[index]);
            }
            set
            {
                List[index] = value;
            }
        }