1 //-----------------------------------------------------------------------------
3 // Copyright (C) Microsoft Corporation. All Rights Reserved.
5 //-----------------------------------------------------------------------------
8 namespace Microsoft
.Cci
.Pdb
{
9 internal class PdbLines
{
10 internal PdbSource file
;
11 internal PdbLine
[] lines
;
13 internal PdbLines(PdbSource file
, uint count
) {
15 this.lines
= new PdbLine
[count
];