idk what to do... xD
string[] textLines = new string[20];
for(int i = 0; i < 20; i++)
{
textLines = System.IO.File.ReadAllLines(@"C:\Users\Computername\Downloads\Filename.txt");
}
Console.WriteLine("Random Text");
for (int i = 0; i < 20; i++)
{
Console.WriteLine(textLines[i]);
}
System.IndexOutOfRangeException: 'Index was outside the bounds of the array.'