Hi I cant seem to find any useful information regarding how to store information into an array from a console.writeline.
Console.WriteLine("Please enter one or more sentences.");
string text = Console.ReadLine();
How would I store the users sentence into an array? as currently if I enter a large amount of text it is getting cut of hopefully an array will allow for all of the text to be read and sorted. Thank you!!