c# などを使用して、マウス ホバー時に通知アイコンのテキストを変更したい
  NotifyIcon notifyicon;
  notifyicon.Icon = (Icon)resManager.GetObject("test");
            notifyicon.Visible = true;
    if(a==b)
    {
     notifyicon.Text = "Both are equal";
    }
    else
    {
     notifyicon.Text = "Not equal";
    }
出来ますか???