Answers for "object to list of strings c#"

C#
0

convert object to list of objects c#

IList collection = (IList)myObject;
Posted by: Guest on April-04-2020
0

list of objects to string c#

var mylist = myObjectList.ConvertAll(x => x.ToString());
Posted by: Guest on January-22-2021

Code answers related to "object to list of strings c#"

C# Answers by Framework

Browse Popular Code Answers by Language