My program does every few seconds:
icon.Text = message;
Often with the same message
.
QUESTION: Does it make sense to only do it when message is different from last time?
In other words, can the code below ever prevent some flickering, or is it certified 100% useless?
if ( ! message.Equals(icon.Text))
{
icon.Text = message;
}