Answers for "c# convert object to array"

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 "c# convert object to array"

C# Answers by Framework

Browse Popular Code Answers by Language