| File: Microsoft.Cci.Pdb\PdbLines.cs | Web Access |
| Project: src\src\cecil\symbols\pdb\Mono.Cecil.Pdb.csproj (Mono.Cecil.Pdb) |
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; namespace Microsoft.Cci.Pdb { internal class PdbLines { internal PdbSource file; internal PdbLine[] lines; internal PdbLines(PdbSource file, uint count) { this.file = file; this.lines = new PdbLine[count]; } } } |