8 instantiations of IntAsObject
Microsoft.CodeAnalysis.UnitTests (8)
Collections\SegmentedCollectionsMarshalTests.cs (8)
78{ 1, new IntAsObject() }, 79{ 2, new IntAsObject() }, 114itemRef = new IntAsObject() { Value = 7, Property = 8 }; 212dict = dict.Add(1, new IntAsObject()); 213dict = dict.Add(2, new IntAsObject()); 313dict.Add(1, new IntAsObject()); 314dict.Add(2, new IntAsObject()); 348itemRef = new IntAsObject() { Value = 7, Property = 8 };
9 references to IntAsObject
Microsoft.CodeAnalysis.UnitTests (9)
Collections\SegmentedCollectionsMarshalTests.cs (9)
76var dict = new SegmentedDictionary<int, IntAsObject> 87IntAsObject itemVal = dict[1]; 101ref IntAsObject itemRef = ref SegmentedCollectionsMarshal.GetValueRefOrNullRef(dict, 2); 211var dict = ImmutableSegmentedDictionary.Create<int, IntAsObject>(); 220IntAsObject itemVal = dict[1]; 234ref readonly IntAsObject itemRef = ref SegmentedCollectionsMarshal.GetValueRefOrNullRef(dict, 2); 312var dict = ImmutableSegmentedDictionary.CreateBuilder<int, IntAsObject>(); 321IntAsObject itemVal = dict[1]; 335ref IntAsObject itemRef = ref SegmentedCollectionsMarshal.GetValueRefOrNullRef(dict, 2);