ch
{
}
}
Thread.Sleep(r.Next(2000, 5000)); // Sleep 2 - 5 seconds.
ct++;
}
}
/// <summary>
/// Get list of top 2000 urls.
/// </summary>
static IEnumerable<string> GetUrls()
{
return File.ReadAllLines("top.txt").Where(item => item != null &&
item.Length > 1 &&
item[0] != '#').Select(item => "http://" + item);
}
}
9 7 3 1 2 4 8 :