9 writes to _target
System.Private.CoreLib (9)
src\System\MulticastDelegate.CoreCLR.cs (9)
184result._target = result; 555this._target = target; 563this._target = target; 573this._target = target; 581this._target = this; 590this._target = this; 599this._target = target; 608this._target = this; 618this._target = this;
11 references to _target
System.Private.CoreLib (11)
src\System\Delegate.CoreCLR.cs (9)
96if (_target == d._target && _methodPtr == d._methodPtr && _methodPtrAux == d._methodPtrAux) 111if (_target != d._target) 154return (_target != null ? RuntimeHelpers.GetHashCode(_target) * 33 : 0) + GetType().GetHashCode(); 189for (currentType = _target!.GetType(); currentType != null; currentType = currentType.BaseType) 205|| _target.GetType().IsCOMObject 555return (_methodPtrAux == IntPtr.Zero) ? _target : null;
src\System\MulticastDelegate.CoreCLR.cs (2)
158dd._target == d._target &&