You have two lists in a workflow: 1. FranceCities which contains city names in France 2. IndiaCities which contains city names in India In order to show all city names from both lists, which expression should be used as the input to a MessageBox?
A.
String.Join(",", FranceCities.ToString + IndiaCities.ToString)
B.
FranceCities.Concat(IndiaCities).ToList.ToString
C.
String.Join(",", Enumerable.Concat(FranceCities, IndiaCities).ToList)
D.
Enumerable.Concat(FranceCities, IndiaCities).ToString
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Engineer24
1 year, 7 months agoasfghjkl
1 year, 3 months ago