PdbSource.cs 801 B

1234567891011121314151617181920212223242526
  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 class PdbSource {
  6. //internal uint index;
  7. internal string name;
  8. internal Guid doctype;
  9. internal Guid language;
  10. internal Guid vendor;
  11. internal Guid checksumAlgorithm;
  12. internal byte[] checksum;
  13. internal PdbSource(/*uint index, */string name, Guid doctype, Guid language, Guid vendor, Guid checksumAlgorithm, byte[] checksum) {
  14. //this.index = index;
  15. this.name = name;
  16. this.doctype = doctype;
  17. this.language = language;
  18. this.vendor = vendor;
  19. this.checksumAlgorithm = checksumAlgorithm;
  20. this.checksum = checksum;
  21. }
  22. }
  23. }