1 implementation of Equals
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Symbol.cs (1)
817bool ISymbolInternal.Equals(ISymbolInternal other, TypeCompareKind compareKind)
3 references to Equals
Microsoft.CodeAnalysis (3)
MetadataReader\MetadataDecoder.cs (2)
534Debug.Assert(result1.Equals(result, TypeCompareKind.ConsiderEverything)); 2354if (!param2.Type.Equals(param1.Type, TypeCompareKind.ConsiderEverything))
Symbols\Attributes\CommonAttributeDataComparer.cs (1)
122return x.ValueInternal is ISymbolInternal xType && y.ValueInternal is ISymbolInternal yType && xType.Equals(yType, TypeCompareKind.AllIgnoreOptions);