ScrewTurn.Wiki.HtmlList.HtmlList C# (CSharp) Method

HtmlList() public method

Initializes a new instance of the T:HtmlList class.
public HtmlList ( HtmlListType type ) : System
type HtmlListType The list type.
return System
		public HtmlList(HtmlListType type) {
			Type = type;
			Elements = new List<HtmlListElement>(10);
		}
HtmlList