Base:
method
Equals
System.Reflection.MemberInfo.Equals(System.Object)
2 overrides of Equals
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\ConstructorInfo.cs (1)
21public override bool Equals(object? obj) => base.Equals(obj);
src\libraries\System.Private.CoreLib\src\System\Reflection\MethodInfo.cs (1)
38public override bool Equals(object? obj) => base.Equals(obj);
7 references to Equals
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (3)
278return methodCall.MethodBase.Equals(_syncMethod); 290return methodCall.MethodBase.Equals(_beginMethod); 302return methodCall.MethodBase.Equals(_taskMethod);
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\Utils.vb (1)
159If mi1.Equals(mi2) Then
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Reflection\ConstructorInfo.cs (1)
21public override bool Equals(object? obj) => base.Equals(obj);
src\libraries\System.Private.CoreLib\src\System\Reflection\MethodBase.cs (1)
84return left is not null && left.Equals(right);
src\libraries\System.Private.CoreLib\src\System\Reflection\MethodInfo.cs (1)
38public override bool Equals(object? obj) => base.Equals(obj);