N nova Client Регистрация 09.10.2011 Сообщения 88 Благодарностей 7 Баллы 8 03.05.2014 #1 I wanted to know if there is a way to use c# and use random pause in milliseconds. If you can provide an example that would be great. thanks
I wanted to know if there is a way to use c# and use random pause in milliseconds. If you can provide an example that would be great. thanks
bigcajones Client Регистрация 09.02.2011 Сообщения 1 216 Благодарностей 683 Баллы 113 03.05.2014 #2 Код: var r = new Random(); int set = r.Next(200,5000); System.Threading.Thread.Sleep(set); Реакции: nova