Answers for "convert object type to list c#"

0

convert object to list of objects c#

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

to list c#

var arr = new int[] {1, 2, 3};
List<int> list = arr.ToList();
Posted by: Guest on June-17-2020

Code answers related to "convert object type to list c#"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language