2 instantiations of Person
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSegmentedListTest.cs (2)
544
var list = ImmutableSegmentedList.Create(new
Person
{ Name = "Andrew", Age = 20 });
545
var newAge = new
Person
{ Name = "Andrew", Age = 21 };
6 references to Person
Microsoft.CodeAnalysis.UnitTests (6)
Collections\ImmutableSegmentedListTest.cs (6)
545
var
newAge = new Person { Name = "Andrew", Age = 21 };
554
System.Collections.Immutable.IImmutableList<
Person
> iface = list;
949
private class NameOnlyEqualityComparer : IEqualityComparer<
Person
>
951
public bool Equals(
Person
x,
Person
y)
956
public int GetHashCode(
Person
obj)