List Method (IEnumerable(Object), String)

HttpServer.dll

Render errors into a UL with class "errors"

Namespace:  HttpServer.Helpers
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static string List(
	IEnumerable<Object> theList,
	string className
)
Visual Basic (Declaration)
Public Shared Function List ( _
	theList As IEnumerable(Of Object), _
	className As String _
) As String
Visual C++
public:
static String^ List(
	IEnumerable<Object^>^ theList, 
	String^ className
)

Parameters

theList
Type: System.Collections.Generic..::.IEnumerable<(Of <(Object>)>)
items to list
className
Type: System..::.String
class used by UL-tag.

Return Value

an unordered html list.

See Also