[msvc] Update csproj files (#4846)
[mono.git] / mcs / tools / pdb2mdb / PdbLines.cs
1 //-----------------------------------------------------------------------------
2 //
3 // Copyright (C) Microsoft Corporation.  All Rights Reserved.
4 //
5 //-----------------------------------------------------------------------------
6 using System;
7
8 namespace Microsoft.Cci.Pdb {
9   internal class PdbLines {
10     internal PdbSource file;
11     internal PdbLine[] lines;
12
13     internal PdbLines(PdbSource file, uint count) {
14       this.file = file;
15       this.lines = new PdbLine[count];
16     }
17   }
18 }