Ejemplo n.º 1
0
 internal ModuleDefinition(Mono.Cecil.PE.Image image) : this()
 {
     this.Image           = image;
     this.kind            = image.Kind;
     this.RuntimeVersion  = image.RuntimeVersion;
     this.architecture    = image.Architecture;
     this.attributes      = image.Attributes;
     this.characteristics = image.Characteristics;
     this.fq_name         = image.FileName;
     this.reader          = new MetadataReader(this);
 }