PdbLine.cs 628 B

12345678910111213141516171819202122
  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 struct PdbLine {
  6. internal uint offset;
  7. internal uint lineBegin;
  8. internal uint lineEnd;
  9. internal ushort colBegin;
  10. internal ushort colEnd;
  11. internal PdbLine(uint offset, uint lineBegin, ushort colBegin, uint lineEnd, ushort colEnd) {
  12. this.offset = offset;
  13. this.lineBegin = lineBegin;
  14. this.colBegin = colBegin;
  15. this.lineEnd = lineEnd;
  16. this.colEnd = colEnd;
  17. }
  18. }
  19. }