I created log method that accept string. When I want to use it I write something like:
Log(string.Format("Message {0}", AdditionalInfo));
How should I implement Log method in order to be able to use string Format but do not have to write it explicitly in method arguments:
Log("Message {0}", AdditionalInfo);
I use .net 2.0