The code:
private void viewLogFileToolStripMenuItem_Click(object sender, EventArgs e)
{
string path_log = Path.GetDirectoryName(Application.LocalUserAppDataPath) + @"\log";
string logger_file = @"\logger.txt";
string LoggerFileName = Path.Combine(path_log, logger_file);
}
I want when I click the menu item it will open the LoggerFileName automatic in notepad and show me the notepad window .