public CustomAttributeTableWriter(TablesMDHeap.TableInfo <RawCustomAttributeRow> info) : base(info) { this.sortedRows = new RawCustomAttributeRow[info.Rows]; var sortedRows = this.sortedRows; for (int i = 0; i < sortedRows.Length; i++) { sortedRows[i] = info.Get((uint)i + 1); } Array.Sort(sortedRows, (a, b) => a.Parent.CompareTo(b.Parent)); }
public NormalTableWriter(TablesMDHeap.TableInfo info) : base(info) { }
protected TableWriter(TablesMDHeap.TableInfo info) => this.info = info;