Consider i execute a method \'Method1\' in C#. Once the execution goes into the method i check few condition and if any of them is false, then the execution of Method1 shou
Use the return statement.
return
if(!condition1) return; if(!condition2) return; // body...