Click or drag to resize

QueryUtilGenerateCommaSeparatedListT Method

Generates a string of camelCase words each separated by a comma.

For example, an input array of {DISCUSSIONS, COLUMN_TYPE} would output a string of "discussions,columnType".

Namespace:  Smartsheet.Api.Internal.Util
Assemblies:   smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
  smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
Syntax
public static string GenerateCommaSeparatedList<T>(
	IEnumerable<T> include
)

Parameters

include
Type: System.Collections.GenericIEnumerableT
the list of object

Type Parameters

T
The Type of the list

Return Value

Type: String
the comma separated list of words
See Also