16
Answers

return Method

Ask a question
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)