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

this() 공개 메소드

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