ReadFile.Main C# (CSharp) 메소드

Main() 정적인 개인적인 메소드

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