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