Quang Dinh Luong

Quang Dinh Luong

  • NA
  • 76
  • 17.8k

return Method

Oct 10 2015 9:24 AM
This is a shabby question! :)
Is there a way to use "return" method in C# to roll back to the previous used private void without calling the specific name
 
I mean this:
private void blablabla()
   { 
        int a = 83959592;
        blobloblo(a); 
   }    
private void blobloblo(int a)
   {
        if(a % 2 == 0)
          { 
                roll back to blablabla() without using this method: "blablabla();"
          }  
   } 
 
Sorry if it isn't clear, but that's my best! 

Answers (16)