Guest User

Untitled

a guest
Nov 17th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. for(int i = 0, i < array.Length, i++){
  2. MethodA (i);
  3. MethodB (i);
  4. MethodC (i);
  5. }
  6.  
  7. void MethodA (int i) {
  8. //do something
  9. }
  10.  
  11. void MethodB (int i) {
  12. //do something
  13. }
  14.  
  15. void MethodC (int i) {
  16. //do something
  17. }
  18.  
  19. void MethodA () {
  20. for(int i = 0, i < array.Length, i++){
  21. //do something
  22. }
  23. }
  24. void MethodB () {
  25. for(int i = 0, i < array.Length, i++){
  26. //do something
  27. }
  28. }
  29. void MethodC () {
  30. for(int i = 0, i < array.Length, i++){
  31. //do something
  32. }
  33. }
  34.  
  35. void MethodA () {
  36. for(int i = 0, i < array.Length, i++){
  37. //do something
  38. MethodB (i);
  39. }
  40. }
  41.  
  42. void MethodB (int i) {
  43. //do something
  44. MethodC (i);
  45. }
  46.  
  47. void MethodC (int i) {
  48. //do something
  49. }
Add Comment
Please, Sign In to add comment