You must use the properties in C #, then you can add any processing you need to the setter (logging, triggering an event, ...)
private Boolean _boolValue public Boolean BoolValue { get { return _boolValue; } set { _boolValue = value;
jdehaan
source share