Which of the following code snippets converts an IEnumerable<string> into a string containing comma separated values?
Correct Answer: public static string ConvertToString(IEnumerable<T> source) { return string.Join(",",source.ToArray()); }
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More C# MCQ Questions