SwfDotNet.IO.Tags.BaseTagCollection.this C# (CSharp) 메소드

this() 공개 메소드

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