7 references to _customAttributeTable
System.Reflection.Metadata (7)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (7)
156
case TableIndex.CustomAttribute: SetTableCapacity(
_customAttributeTable
, rowCount); break;
231
case TableIndex.CustomAttribute : return
_customAttributeTable
.Count;
303
rowCounts[(int)TableIndex.CustomAttribute] =
_customAttributeTable
.Count;
755
_customAttributeTable
.Add(new CustomAttributeRow
762
return CustomAttributeHandle.FromRowId(
_customAttributeTable
.Count);
2057
var ordered = _customAttributeTableNeedsSorting && !metadataSizes.IsEncDelta ?
_customAttributeTable
.OrderBy((x, y) => x.Parent - y.Parent) :
_customAttributeTable
;