Is there any way I can mark more than 1 method as public without using the keyword multiple times?
at the moment, I have to do it for every method:
class foo
{
public void doSomething();
public void doAnotherthing();
public int counter;
}
But this get's pretty frustrating if you need to create more than 150 method declarations for a class, so, is there any other way?