BzReader.HitCollection.this C# (CSharp) Method

this() public method

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