Guest User

Untitled

a guest
Nov 21st, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. var cookieContainer = new CookieContainer();
  2. for (int i = 0; i < 10000; i++)
  3. {
  4. cookieContainer.Add(new Cookie("name1", "value1", "/", $"test{i}.com"));
  5. }
  6.  
  7. var cookieContainer = new CookieContainer();
  8. for (int i = 0; i < 10000; i++)
  9. {
  10. cookieContainer.Add(new Cookie("name1", "value1", $"/{i}", "test.com"));
  11. }
Add Comment
Please, Sign In to add comment