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