6 references to _methodSemanticsTable
System.Reflection.Metadata (6)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (6)
166
case TableIndex.MethodSemantics: SetTableCapacity(
_methodSemanticsTable
, rowCount); break;
250
case TableIndex.MethodSemantics : return
_methodSemanticsTable
.Count;
322
rowCounts[(int)TableIndex.MethodSemantics] =
_methodSemanticsTable
.Count;
701
_methodSemanticsTable
.Add(new MethodSemanticsRow
2162
var ordered = _methodSemanticsTableNeedsSorting ?
_methodSemanticsTable
.OrderBy((x, y) => (int)x.Association - (int)y.Association) :
_methodSemanticsTable
;