73ee7591e8
Former-commit-id: d18deab1b47cfd3ad8cba82b3f37d00eec2170af
27 lines
801 B
C#
27 lines
801 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
using System;
|
|
|
|
namespace Microsoft.Cci.Pdb {
|
|
internal class PdbSource {
|
|
//internal uint index;
|
|
internal string name;
|
|
internal Guid doctype;
|
|
internal Guid language;
|
|
internal Guid vendor;
|
|
internal Guid checksumAlgorithm;
|
|
internal byte[] checksum;
|
|
|
|
internal PdbSource(/*uint index, */string name, Guid doctype, Guid language, Guid vendor, Guid checksumAlgorithm, byte[] checksum) {
|
|
//this.index = index;
|
|
this.name = name;
|
|
this.doctype = doctype;
|
|
this.language = language;
|
|
this.vendor = vendor;
|
|
this.checksumAlgorithm = checksumAlgorithm;
|
|
this.checksum = checksum;
|
|
}
|
|
}
|
|
}
|