update MEF to preview 9
[mcs.git] / tools / pdb2mdb / PdbLines.cs
blob9e989cdf3fe39793c240261f591950839983cea7
1 //-----------------------------------------------------------------------------
2 //
3 // Copyright (C) Microsoft Corporation. All Rights Reserved.
4 //
5 //-----------------------------------------------------------------------------
6 using System;
8 namespace Microsoft.Cci.Pdb {
9 internal class PdbLines {
10 internal PdbSource file;
11 internal PdbLine[] lines;
13 internal PdbLines(PdbSource file, uint count) {
14 this.file = file;
15 this.lines = new PdbLine[count];