| 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
Syntaxpublic static string GenerateCommaSeparatedList<T>(
	IEnumerable<T> include
)
Public Shared Function GenerateCommaSeparatedList(Of T) ( 
	include As IEnumerable(Of T)
) As String
public:
generic<typename T>
static String^ GenerateCommaSeparatedList(
	IEnumerable<T>^ include
)
static member GenerateCommaSeparatedList : 
        include : IEnumerable<'T> -> string 
Parameters
- include
- Type: System.Collections.GenericIEnumerableT
 the list of object
Type Parameters
- T
- The Type of the list
Return Value
Type: 
Stringthe comma separated list of words
 See Also
See Also