turn an object to array c# code example
Example: convert array object to int[] c#
object[] objarr = new object[] {1,2,3 };
int[] arr = objarr.Cast<int>().ToArray();
object[] objarr = new object[] {1,2,3 };
int[] arr = objarr.Cast<int>().ToArray();