Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.11/HeuristicLab.ExtLibs/HeuristicLab.Cecil/0.9.5/Mono.Cecil-0.9.5/Symbols/Mono.Cecil.Pdb/Microsoft.Cci.Pdb/PdbLines.cs @ 12011

Last change on this file since 12011 was 11700, checked in by jkarder, 10 years ago

#2077: created branch and added first version

File size: 488 bytes
Line 
1//-----------------------------------------------------------------------------
2//
3// Copyright (C) Microsoft Corporation.  All Rights Reserved.
4//
5//-----------------------------------------------------------------------------
6using System;
7
8namespace 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}
Note: See TracBrowser for help on using the repository browser.