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)
652
public override bool
Equals
(ConstantValue? other)
723
public override bool
Equals
(ConstantValue? other)
780
public override bool
Equals
(ConstantValue? other)
823
public override bool
Equals
(ConstantValue? other)
866
public override bool
Equals
(ConstantValue? other)
910
public override bool
Equals
(ConstantValue? other)
944
public override bool
Equals
(ConstantValue? other)
990
public override bool
Equals
(ConstantValue? other)
13 references to Equals
Microsoft.CodeAnalysis (13)
ConstantValue.cs (2)
891
return left.
Equals
(right);
906
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;
725
return base.
Equals
(other) && _value == other.ByteValue;
782
return base.
Equals
(other) && _value == other.Int16Value;
825
return base.
Equals
(other) && _value == other.Int32Value;
868
return base.
Equals
(other) && _value == other.Int64Value;
912
return base.
Equals
(other) && _value == other.Int32Value;
946
return base.
Equals
(other) && _value.Equals(other.DoubleValue);
992
return base.
Equals
(other) && _value.Equals(other.DoubleValue);
SwitchConstantValueHelper.cs (1)
114
return firstConstant.
Equals
(secondConstant);