I am wondering is there a easy way to log all the parameters that where passed into a method, without me having to manually writing it out myself?
public void test(string one, DateTime date, string[] list) {
logger.debug("Params: {0}, {1},{2}", one, date, list); // instead of having to do something like this, is there something like this
nlog.logMethod(this)
}