newtelligence.DasBlog.Web.Core.NavigatorItemCollection.this C# (CSharp) 메소드

this() 공개 메소드

Gets or sets the NavigatorItem at the given index in this NavigatorItemCollection.
public this ( int index ) : NavigatorItem
index int
리턴 NavigatorItem
        public virtual NavigatorItem this[int index]
        {
            get
            {
                return (NavigatorItem) this.List[index];
            }
            set
            {
                this.List[index] = value;
            }
        }