Hey, I am trying to make program that will count something, for example let's say I want to make All clicks( will take click from button1 and button2) and clicks made on button2 only.

So for code (just short code, if you want I can add whole code)

Code:
string path = @"box.txt";
if (!File.Exists(path))
{
    var myFile = File.Create(path);
myFile.Close();
}
else
{
    counter.Text = File.ReadAllText(path);


celk.Text = File.ReadAllText(path);
}
where counter.Text - textbox for clicks only by button2
where celk.Text - textbox for all clicks made by both buttons

but when I give there [celk.Text = File.ReadAllText(path)]

it won't take second line from file. So if you have any ideas.
I would like to hear them. Thanks