Рассмотрим этот фрагмент кода JavaScript:
Object.prototype.log = function() {
// here, you have a centralized place to do logging stuff;
console.log(this);
}
function fullName(firstName, lastName)
{
// here, using a simple one-line code, you can log all parameters;
arguments.log();
}
fullName('saeed', 'nemati');
Можем ли мы иметь подобный механизм для регистрации всех параметров, передаваемых в метод, в C #?
Примечание : Я использовал только отражение, но безуспешно:
public static void LogParameters(this ParameterInfo[] parameters)
{
StringBuilder builder = new StringBuilder();
builder.Append("*****************\r\n");
builder.Append("Parameters\r\n");
parameters.ToList().ForEach(pi =>
{
builder.AppendFormat("{0} => {1}\r\n", pi.Name, pi.DefaultValue);
// The problem is that, I can't get the value of the parameter here
});
builder.Append("*****************");
Log.Write(builder.ToString());
}
public string GetFullName(string firstName, string lastName)
{
MethodBase.GetCurrentMethod().GetParameters().LogParameters();
return firstName + " - " + lastName;
}
GetFullName("saeed", "neamati");