Greetings,
I cannot understand what the below code do
What is the InvokeRequired do?
The delegate I do not know much about delegates
if (lblError.InvokeRequired)
{
lblError.Invoke(new MethodInvoker(delegate {
lblError.Text = "License management. Information on active license, renewing license and acquiring new ones. Commercial for limited computers";
picUpdatingFormat.Visible = false;
}
)
);
}