Guest User

Untitled

a guest
May 6th, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. while ((line = file.ReadLine()) != null)
  2. {
  3. string messageDownloadID = line ;
  4. if (String.IsNullOrEmpty(messageDownloadID))
  5. {
  6. continue;
  7. }
  8. }
  9.  
  10. while(condition) {
  11. statement
  12. continue
  13. statement
  14. }
  15.  
  16. top:
  17. while(condition) {
  18. statement
  19. goto top;
  20. statement
  21. }
  22.  
  23. for (int i = 0; i < 10; i++) {
  24. if (i == 5) {
  25. continue;
  26. }
  27. Console.WriteLine(i);
  28. }
  29.  
  30. int j = 0;
  31. while (j < 10) {
  32. if (j == 5) {
  33. continue;
  34. }
  35. Console.WriteLine(j);
  36. j++;
  37.  
  38. while ((line = file.ReadLine()) != null) {
  39. string messageDownloadID = line;
  40. if (String.IsNullOrEmpty(messageDownloadID)) {
  41. continue;
  42. }
  43. }
  44.  
  45. while ((line = file.ReadLine()) != null) {
  46. string messageDownloadID = line;
  47. if (String.IsNullOrEmpty(messageDownloadID)) {
  48. continue;
  49. }
  50. ProcessMessageDownloadID(messageDownloadID);
  51. }
Advertisement
Add Comment
Please, Sign In to add comment