retag
[mcs.git] / tools / pdb2mdb / PdbLine.cs
blob78eb9d63087d7845d88e4c05ede99645211a4abe
1 //-----------------------------------------------------------------------------
2 //
3 // Copyright (C) Microsoft Corporation. All Rights Reserved.
4 //
5 //-----------------------------------------------------------------------------
6 using System;
8 namespace 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;
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;