PdbLines.cs 412 B

12345678910111213141516
  1. // Copyright (c) Microsoft. All rights reserved.
  2. // Licensed under the MIT license. See LICENSE file in the project root for full license information.
  3. using System;
  4. namespace Microsoft.Cci.Pdb {
  5. internal class PdbLines {
  6. internal PdbSource file;
  7. internal PdbLine[] lines;
  8. internal PdbLines(PdbSource file, uint count) {
  9. this.file = file;
  10. this.lines = new PdbLine[count];
  11. }
  12. }
  13. }