BzReader.HitCollection.this C# (CSharp) 메소드

this() 공개 메소드

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