newtelligence.DasBlog.Web.Core.NavigatorItemCollection.Add C# (CSharp) Method

Add() public method

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. ///
return void
        public virtual void Add(NavigatorItem value)
        {
            this.List.Add(value);
        }