Can you try below
items = {"Item1", "Item2", "Item3"}
bulletedList = String.Join(Environment.NewLine, items.Select(Function(item) "• " & item))
Cheers!!
Can you try below
items = {"Item1", "Item2", "Item3"}
bulletedList = String.Join(Environment.NewLine, items.Select(Function(item) "• " & item))
Cheers!!