Skip to content

Instantly share code, notes, and snippets.

@marknadig
Created March 23, 2017 00:28
Show Gist options
  • Save marknadig/b5333c7b6f3ed8797fe54e6435d78621 to your computer and use it in GitHub Desktop.
Save marknadig/b5333c7b6f3ed8797fe54e6435d78621 to your computer and use it in GitHub Desktop.
String.Join w/ linq
var empExp = String.Join(",", employeeIds.Select(u => $"'{DoubleQuote(u)}'"));
Dim empExp = String.Join(",", employeeIds.Select(Function(u) $"'{DoubleQuote(u)}'"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment