コード例 #1
0
ファイル: TableWriter.cs プロジェクト: unixfreaxjp/dnSpy
            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));
            }
コード例 #2
0
ファイル: TableWriter.cs プロジェクト: unixfreaxjp/dnSpy
 public NormalTableWriter(TablesMDHeap.TableInfo info) : base(info)
 {
 }
コード例 #3
0
ファイル: TableWriter.cs プロジェクト: unixfreaxjp/dnSpy
 protected TableWriter(TablesMDHeap.TableInfo info) => this.info = info;