J
Jake K
I have about 100 methods in an application I'm developing. There will be
many, many more methods added as the application grows. I need to include a
line of code at the start of every method in the project and every method
that will be added in the future. The line of code is simply
if (!bSomeVar)
return;
Basically I have to check this bool var before executing the code in the
moethods.
Is there an easy way to inhrit this line or other options?
many, many more methods added as the application grows. I need to include a
line of code at the start of every method in the project and every method
that will be added in the future. The line of code is simply
if (!bSomeVar)
return;
Basically I have to check this bool var before executing the code in the
moethods.
Is there an easy way to inhrit this line or other options?