Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.ExtLibs/HeuristicLab.Cecil/0.9.5/Mono.Cecil-0.9.5/Symbols/Mono.Cecil.Pdb/Microsoft.Cci.Pdb/PdbLine.cs @ 11937

Last change on this file since 11937 was 11700, checked in by jkarder, 9 years ago

#2077: created branch and added first version

File size: 704 bytes
Line 
1//-----------------------------------------------------------------------------
2//
3// Copyright (C) Microsoft Corporation.  All Rights Reserved.
4//
5//-----------------------------------------------------------------------------
6using System;
7
8namespace Microsoft.Cci.Pdb {
9  internal struct PdbLine {
10    internal uint offset;
11    internal uint lineBegin;
12    internal uint lineEnd;
13    internal ushort colBegin;
14    internal ushort colEnd;
15
16    internal PdbLine(uint offset, uint lineBegin, ushort colBegin, uint lineEnd, ushort colEnd) {
17      this.offset = offset;
18      this.lineBegin = lineBegin;
19      this.colBegin = colBegin;
20      this.lineEnd = lineEnd;
21      this.colEnd = colEnd;
22    }
23  }
24}
Note: See TracBrowser for help on using the repository browser.