Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.11/HeuristicLab.ExtLibs/HeuristicLab.Cecil/0.9.5/Mono.Cecil-0.9.5/Symbols/Mono.Cecil.Pdb/Microsoft.Cci.Pdb/PdbSource.cs @ 13398

Last change on this file since 13398 was 11700, checked in by jkarder, 10 years ago

#2077: created branch and added first version

File size: 679 bytes
Line 
1//-----------------------------------------------------------------------------
2//
3// Copyright (C) Microsoft Corporation.  All Rights Reserved.
4//
5//-----------------------------------------------------------------------------
6using System;
7
8namespace Microsoft.Cci.Pdb {
9  internal class PdbSource {
10    internal uint index;
11    internal string name;
12    internal Guid doctype;
13    internal Guid language;
14    internal Guid vendor;
15
16    internal PdbSource(uint index, string name, Guid doctype, Guid language, Guid vendor) {
17      this.index = index;
18      this.name = name;
19      this.doctype = doctype;
20      this.language = language;
21      this.vendor = vendor;
22    }
23  }
24}
Note: See TracBrowser for help on using the repository browser.