Answers for "convert array of objects to array of int c#"

C#
0

convert array object to int

object[] objarr = new object[] {1,2,3 };
int[] arr = objarr.Cast<int>().ToArray();
Posted by: Guest on January-01-1970

Code answers related to "convert array of objects to array of int c#"

C# Answers by Framework

Browse Popular Code Answers by Language