Share via


BaseCodeWriter.WriteCommaSeparatedList<T> Method

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Namespace:  System.Web.Razor.Generator
Assembly:  System.Web.Razor (in System.Web.Razor.dll)

Syntax

'Declaration
Protected Friend Sub WriteCommaSeparatedList(Of T) ( _
    items As T(), _
    writeItemAction As Action(Of T) _
)
'Usage
Dim items As T()
Dim writeItemAction As Action(Of T)

Me.WriteCommaSeparatedList(items, _
    writeItemAction)
protected internal void WriteCommaSeparatedList<T>(
    T[] items,
    Action<T> writeItemAction
)
protected public:
generic<typename T>
void WriteCommaSeparatedList(
    array<T>^ items, 
    Action<T>^ writeItemAction
)
JScript does not support generic types or methods.

Type Parameters

  • T

Parameters

  • items
    Type: array<T[]

Permissions

  • Medium trust for the immediate caller. This member can be used by partially trusted code.

See Also

Reference

BaseCodeWriter Class

System.Web.Razor.Generator Namespace