1 write to Items
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\Semantics\Types\TypeArray.cs (1)
89Items = types;
22 references to Items
Microsoft.CSharp (22)
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (2)
919foreach (CType type in meth.Params.Items) 1089Debug.Assert(!Array.Exists(@params.Items, p => p is ArgumentListType)); // We should never have picked a varargs method to bind to.
Microsoft\CSharp\RuntimeBinder\Semantics\GroupToArgsBinder.cs (1)
272foreach (AggregateType type in _pCurrentType.IfacesAll.Items)
Microsoft\CSharp\RuntimeBinder\Semantics\MemberLookup.cs (1)
442foreach (AggregateType type in typeCur.IfacesAll.Items)
Microsoft\CSharp\RuntimeBinder\Semantics\MethodTypeInferrer.cs (2)
1194foreach (AggregateType current in sourceAts.IfacesAll.Items) 1501foreach (AggregateType current in destAts.IfacesAll.Items)
Microsoft\CSharp\RuntimeBinder\Semantics\SubstitutionContext.cs (2)
17ClassTypes = typeArgsCls?.Items ?? Array.Empty<CType>(); 19MethodTypes = typeArgsMeth?.Items ?? Array.Empty<CType>();
Microsoft\CSharp\RuntimeBinder\Semantics\Symbols\SymbolLoader.cs (3)
29foreach (CType iface in atsDer.IfacesAll.Items) 300foreach (AggregateType iface in atsDer.IfacesAll.Items) 500foreach (AggregateType iface in derived.GetIfacesAll().Items)
Microsoft\CSharp\RuntimeBinder\Semantics\Types\AggregateType.cs (2)
121foreach (AggregateType iface in IfacesAll.Items) 192foreach (AggregateType type in IfacesAll.Items)
Microsoft\CSharp\RuntimeBinder\Semantics\Types\TypeArray.cs (7)
92public int Count => Items.Length; 96public CType this[int i] => Items[i]; 102Debug.Assert(Array.TrueForAll(Items, item => item != null)); 105public void CopyItems(int i, int c, CType[] dest) => Array.Copy(Items, i, dest, 0, c); 119CType[] types = array.Items; 145CType[] prgtype1 = pta1.Items; 151CType[] prgtype2 = pta2.Items;
Microsoft\CSharp\RuntimeBinder\Semantics\Types\TypeManager.cs (1)
204CType[] srcs = taSrc.Items;
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (1)
1780foreach (CType bound in paramType.Bounds.Items)