ReadFile.Main C# (CSharp) Method

Main() static private method

static private Main ( ) : void
return void
    static void Main()
    {
        Console.Write("Please enter the full path to the file: ");
        string filePath = Console.ReadLine();
        PrintFileToConsole(filePath);
    }