SwfDotNet.IO.Tags.BaseTagCollection.this C# (CSharp) Method

this() public method

Access base tag list by index
public this ( int index ) : BaseTag
index int
return BaseTag
        public BaseTag this[int index]
        {
            get
            {
                return ((BaseTag)List[index]);
            }
            set
            {
                List[index] = value;
            }
        }