Implemented interface member:
14 overrides of Equals
Microsoft.CodeAnalysis (14)
ConstantValueSpecialized.cs (14)
48public override bool Equals(ConstantValue? other) 105public override bool Equals(ConstantValue? other) 205public override bool Equals(ConstantValue? other) 264public override bool Equals(ConstantValue? other) 305public override bool Equals(ConstantValue? other) 426public override bool Equals(ConstantValue? other) 635public override bool Equals(ConstantValue? other) 706public override bool Equals(ConstantValue? other) 763public override bool Equals(ConstantValue? other) 806public override bool Equals(ConstantValue? other) 849public override bool Equals(ConstantValue? other) 893public override bool Equals(ConstantValue? other) 927public override bool Equals(ConstantValue? other) 973public override bool Equals(ConstantValue? other)
16 references to Equals
Microsoft.CodeAnalysis (13)
ConstantValue.cs (2)
868return left.Equals(right); 883return this.Equals(obj as ConstantValue);
ConstantValueSpecialized.cs (10)
207return base.Equals(other) && _value.Equals(other.RopeValue); 266return base.Equals(other) && _value == other.DecimalValue; 307return base.Equals(other) && _value == other.DateTimeValue; 708return base.Equals(other) && _value == other.ByteValue; 765return base.Equals(other) && _value == other.Int16Value; 808return base.Equals(other) && _value == other.Int32Value; 851return base.Equals(other) && _value == other.Int64Value; 895return base.Equals(other) && _value == other.Int32Value; 929return base.Equals(other) && _value.Equals(other.DoubleValue); 975return base.Equals(other) && _value.Equals(other.DoubleValue);
SwitchConstantValueHelper.cs (1)
114return firstConstant.Equals(secondConstant);
Microsoft.CodeAnalysis.CSharp (2)
BoundTree\BoundDagTest.cs (2)
36return x.Value.Equals(y.Value); 38return x.Relation == y.Relation && x.Value.Equals(y.Value);
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\MethodSignatureComparer.vb (1)
710Return Not constValue1.Equals(constValue2)