Runnable r = new Runnable()
{
Message msg = thisMsg;
Packet myTC = thisTC;
public void run()
{
myTC.notify(msgForLater);
}
}
javax.swing.SwingUtilities.invokeLater(r);
Can anyone tell me C# function similar to invokeLater(r);??
I tried several ways to solve this problem,but finally understood,that only implementation of this function works correct,so,is it in .NET??