c# int to array code example
Example 1: convert string array to int C#
using System;
public class Example
{
public static void Main()
{
string[] strings = new string[] {"1", "2", "3"};
int[] ints = Array.ConvertAll(strings, s => int.Parse(s));
Console.WriteLine(String.Join(",", ints));
}
}
Example 2: convert string to array c#
string myString = "foobar";
char[] myCharArray = myString.ToCharArray();
/* Example of myCharArray
{'f', 'o', 'o', 'b', 'a', 'r'}
*/