Hello,
I would like to create an Attribute to put on properties.
The properties that will contains this attribute will execute another method after setting a new value.
For example:
[MethodExecute(Log)]
[MethodExecute(Save)]
public string Name
{
get
{
return name;
}
set
{
name = value;
}
}
Here I would like to activate two methods, one will log the change and the other will save it.
Thanks, Ronny