Version Used:
VS Insiders [11822.327]
Steps to Reproduce:
using System.Collections.Immutable;
ImmutableArray<int> a1 = [1, 2, 3];
ImmutableArray<int> a2 = [1, 2, 3];
if (a1.SequenceEqual(a2))
{
Console.WriteLine("Equal");
}
See hover vs signature help on SequenceEqual
Expected Behavior:
Both features display the same current overload
Actual Behavior:
Hover shows ImmutableArray-specific overload, while signature help shows an IEnumerable overload. I think hover shows the correct one

Version Used:
VS Insiders [11822.327]
Steps to Reproduce:
See hover vs signature help on
SequenceEqualExpected Behavior:
Both features display the same current overload
Actual Behavior:
Hover shows
ImmutableArray-specific overload, while signature help shows anIEnumerableoverload. I think hover shows the correct one