アセンブリ情報には、C# の Assembly クラスを通じてアクセスできます。
1. アセンブリをロードして実行できるメソッドを含む、アセンブリのメタ要素へのアクセスを許可します。
2. 静的メソッド Assembly.Load( を使用します。アセンブリ名) または Assembly.LoadFrom (アセンブリの完全なパス名);
3. 属性:
FullName: アセンブリの表示名:
GetTypes(): アセンブリで定義されている型を取得します。
TestAssembly.cs:
plaincopy をクリップボードに表示しますか?
using System; using System.Reflection;
namespace Magci.Test.Reflection
{ public static void Main()
{ // アセンブリをランタイムにロードしますprocess
Assembly ass = Assembly.Load("TestCustomAttributes");
Assembly ass1 = Assembly.LoadFrom(@"E:CODEdotNetC#9-ReflectionTestCustomAttributes.dll");
//アセンブリの表示名を取得します
Console.WriteLine( ass1 .FullName);
//アセンブリで定義されている型を取得します
Type[] type = ass.GetTypes();
foreach (type t)
{ Console.WriteLine(t.FullName)
} } }
http://www.bkjia.com/PHPjc/320219.html