Hello,


I created class which has public property with get accesor.
This property returns other class.

Example:

Object obj = Myclass.MyObjectProperty

I need to know when this object is accesed with get and when with set accesor.

obj.ObjectsPropery = "I need to know, then SET accsor is fired"
or
string objectPropertyValue = obj.ObjectsPropery; This time GET accsor is fired.

Is any way to catch this trigers?
Event must be catched in Myclass class.