Example #1
0
            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));
            }
Example #2
0
 public NormalTableWriter(TablesMDHeap.TableInfo info) : base(info)
 {
 }
Example #3
0
 protected TableWriter(TablesMDHeap.TableInfo info) => this.info = info;