Guest User

Untitled

a guest
Jun 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public string AwesomeBusinessOperation()
  2. {
  3. var firstPart = TakesALongTimeToProcess("Tons");
  4. var secondPart = TakesALongTimeToProcess(firstPart+" of ");
  5. var result = TakesALongTimeToProcess(secondPart+"money");
  6. return result;
  7. }
  8.  
  9. private string TakesALongTimeToProcess(string word)
  10. {
  11. // This operation takes a while
  12. Thread.Sleep(1000);
  13. return word;
  14. }
Add Comment
Please, Sign In to add comment