Questions tagged as 'delay'

1
answer

How to make the application wait for a while?

It is common to have situations that we need to delay the execution of the code for a period, either to show or delete a message or something visual soon after, either to try something again, wait for something in a test or something creative th...
asked by 09.09.2015 / 16:55
1
answer

How can I generate a delay while running an application in Unity?

I am creating an application in Unity and need some function that causes a delay during the execution of the application.     
asked by 29.09.2015 / 03:26
0
answers

Improving socket performance in C #

Client.cs public void start() { this.Socket.BeginReceive(Buffer, 0, Buffer.Length, 0, new AsyncCallback(beginReceive), this.Socket); } private void beginReceive(IAsyncResult ar) { try { S...
asked by 18.06.2016 / 19:41
1
answer

How to make the application wait for a while?

It is common to have situations that we need to delay the execution of the code for a period, either to show or delete a message or something visual soon after, either to try something again, wait for something in a test or something creative th...
asked by 09.09.2015 / 16:55