-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAssemblyInfor.cs
29 lines (27 loc) · 895 Bytes
/
AssemblyInfor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace MyNetloadX
{
public class AssemblyInfor
{
public string CodeBase { get; set; }
public string FullName { get; set; }
public string Location { get; set; }
public string FullyQualifiedName { get; set; }
public string ScopeName { get; set; }
public string ImageRuntimeVersion { get; set; }
public AssemblyInfor(Assembly ass)
{
this.CodeBase = ass.CodeBase;
this.FullName = ass.FullName;
this.Location = ass.Location;
this.FullyQualifiedName = ass.ManifestModule.FullyQualifiedName;
this.ScopeName = ass.ManifestModule.ScopeName;
this.ImageRuntimeVersion = ass.ImageRuntimeVersion;
}
}
}