mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
488 B
18 lines
488 B
//----------------------------------------------------------------------------- |
|
// |
|
// Copyright (C) Microsoft Corporation. All Rights Reserved. |
|
// |
|
//----------------------------------------------------------------------------- |
|
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]; |
|
} |
|
} |
|
}
|
|
|