MCQs > IT & Programming > C# > Which of the following code snippets converts an IEnumerable into a string containing comma separated values?

C# MCQs

Which of the following code snippets converts an IEnumerable<string> into a string containing comma separated values?

Answer

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

C# Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

C# Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it