in this button click event I am trying to count strings from text file that are the same as in textboxes, then display number of them in label. My problem is that I have no idea how to count them-I'm talking about code inside if-statement. I would really appreciate any help.
private void btnCalculate_Click(object sender, EventArgs e)
{
    string openFileName;
    using (OpenFileDialog ofd = new OpenFileDialog())
    {
        if (ofd.ShowDialog() != DialogResult.OK)
        {
            MessageBox.Show("You did not select OK");
            return;
        }
        openFileName = ofd.FileName;
    }
    FileStream fs = null;
    StreamReader sr = null;
    try
    {
        fs = new FileStream("x", FileMode.Open, FileAccess.Read);
        fs.Seek(0, SeekOrigin.Begin);
        sr = new StreamReader(fs);
        string s = sr.ReadLine();
        while (s != null)
        {  
            s = sr.ReadLine();
        }
      if(s.Contains(tbFirstClub.Text))
        {
           s.Count = lblResult1.Text; //problem is here
        }
      else if(s.Contains(tbSecondClub.Text))
        {
             s.Count = lblResult2.Text; //problem is here
        }
    }
    catch (IOException)
    {
        MessageBox.Show("Error reading file");
    }
    catch (Exception)
    {
        MessageBox.Show("Something went wrong");
    }
    finally
    {
        if (sr != null)
        {
            sr.Close();
        }
    }
}
Thanks in advance.