Add-in to help with if else statement differenciation

Pepperony

New member
Joined
May 8, 2007
Messages
2
Programming Experience
Beginner
In my projects i use many embedded if else statements so sometimes i get kind of lost between them i mean which else is for which if and so on ...
All I need is an add-in that shows me in the code where each if begins and ends u know the vertical lines linking "if" to "end if"

please it's urgent
 
Helpful !!!

Thank you mate I am greatful for you. the switch case is usefull but not in my case since I use many if else for different confditions as in:

VB.NET:
if a=b then
...
   if c=d then
    ...   
       if e=f then
         ...
       else
         ....     
       end if 
   
    else 
      ...
    end if 
else
...
end if
and sometimes I need like 5 of those along with a long list of statements and believe me it becomes hard to track back which else belongs to which if and switch case will be useless in this specific case.

thank you!
 
Back
Top