I have a class with say property
private string fieldSelectedItem;
public string FieldSelectedItem
{
get
{
return fieldSelectedItem;
}
set
{
fieldSelectedItem = value;
}
}
It is accessible from many places.
I came across a situation where an event has a class property in a class. and also some event changes value. I tried debugging. You can check which event / function has changed / accessed the property. is there any way to do this.
source
share