Created
March 23, 2017 00:28
-
-
Save marknadig/b5333c7b6f3ed8797fe54e6435d78621 to your computer and use it in GitHub Desktop.
String.Join w/ linq
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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