public BuildUnorderedList ( ICollection elements ) : String | ||
elements | ICollection | Collection with items to use for the list generation. |
return | String |
<ul> <li>0</li> ... <li>object</li> </ul>
BuildUnorderedList( ICollection )
results in: <ul> <li>0</li> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> <li>object</li> </ul>
Items in elements are converted to string through Object.ToString.
public BuildUnorderedList ( ICollection elements ) : String | ||
elements | ICollection | Collection with items to use for the list generation. |
return | String |