BootstrapExtensions.Base.HtmlList.Ordered C# (CSharp) Method

Ordered() public method

Uses numbers rather than bullets for list items
public Ordered ( ) : HtmlList
return HtmlList
        public HtmlList Ordered()
        {
            _ordered = true;
            return this;
        }