9 writes to _target
System.Private.CoreLib (9)
src\System\MulticastDelegate.CoreCLR.cs (9)
185result._target = result; 556this._target = target; 564this._target = target; 574this._target = target; 582this._target = this; 591this._target = this; 600this._target = target; 609this._target = this; 619this._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)
159dd._target == d._target &&