I am trying to make an application that let's the user search for a file.
I know how to actually write the code for the file search in the user's computer,
but I want that the results that are found would be printed out "live" / while the user pressing the
keys, entering the file name.
Therefore my question, how to do something like Console.ReadLine(); / Console.ReadKey().KeyChar;
But without "forcing" the user to press enter to "send" the results to that executed code.
Thank you for your time.