 | ConversionListIntToString Method |
Create a string from a List of int
Namespace: ToolBooxAssembly: ToolBoox (in ToolBoox.dll) Version: 1.1.0.0 (1.1.0.0)
Syntaxpublic static string ListIntToString(
List<int> list,
char separator,
bool allowDuplicates
)
Public Shared Function ListIntToString (
list As List(Of Integer),
separator As Char,
allowDuplicates As Boolean
) As String
Parameters
- list
- Type: System.Collections.GenericListInt32
List of int objects - separator
- Type: SystemChar
Separator to use (es: ',') - allowDuplicates
- Type: SystemBoolean
The returned string contains duplicated values or not
Return Value
Type:
StringReturn strign object (es: "11,25,4324")
See Also