Answers for "how to convert list of object to list ofstring in c#"

C#
0

string list to object array in c#

var list = new List<string>();
object[] array = list.ToArray<object>();
Posted by: Guest on June-11-2021
0

list of list of string to list of string c#

input.SelectMany(l => l).Distinct().ToList();
Posted by: Guest on December-07-2021

Code answers related to "how to convert list of object to list ofstring in c#"

C# Answers by Framework

Browse Popular Code Answers by Language