Say I have a method:
public void SomeMethod(String p1, String p2, int p3) { #if DEBUG object[] args = GetArguments(); LogParamaters(args); #endi
Well params help with the log call, but won't help the existing method signatures. Logging using an AOP framework might be a more productive approach?