Answers for "how to convert object to int array in c#"

C#
1

convert object to array in c#

var list = (object[])obj;
Posted by: Guest on February-21-2022
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 "how to convert object to int array in c#"

C# Answers by Framework

Browse Popular Code Answers by Language