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

Add() 공개 메소드

Adds an instance of type NavigatorItem to the end of this NavigatorItemCollection.
public Add ( NavigatorItem value ) : void
value NavigatorItem /// The NavigatorItem to be added to the end of this NavigatorItemCollection. ///
리턴 void
        public virtual void Add(NavigatorItem value)
        {
            this.List.Add(value);
        }