Skip to content

Instantly share code, notes, and snippets.

@moenk
Last active March 7, 2021 20:14
Show Gist options
  • Save moenk/8b4453ef69d87a4f412452d2027b653d to your computer and use it in GitHub Desktop.
Save moenk/8b4453ef69d87a4f412452d2027b653d to your computer and use it in GitHub Desktop.
UiPath convert data table column to string join
str_column = String.Join(", ",dt.AsEnumerable().Select(Function(a) a.Field(Of String)(“my_col_name”)).ToArray())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment