So I'm reading from a text file, that contains numbers, but i can only read as string, how can i contain it as int?
string[] lines = File.ReadAllLines("C:\\Users\\Temp\\Desktop\\WriteLines.txt");
for (int i = 0; i < lines.Length; i++)
{
Console.WriteLine(lines[i]);
}