1.允许访问给定程序集的元元素,包含可以加载和执行程序集的方法;
2.加载程序集:使用静态方法C# Assembly.Load(程序集名称)或C# Assembly.LoadFrom(程序集完整路径名);
3.属性:
FullName:程序集显示名称;
4.方法:
GetTypes():获取程序集中定义的类型。
- TestAssembly.cs:
- viewplaincopytoclipboardprint?
- usingSystem;usingSystem.Reflection;
- namespaceMagci.Test.Reflection{
- publicclassTestAssembly{
- publicstaticvoidMain(){
- //将程序集加载到运行过程中
- AssemblyAssemblyass=Assembly.Load("TestCustomAttributes");
- AssemblyAssemblyass1=Assembly.LoadFrom
(@"E:\CODE\dotNet\C#\9-Reflection\TestCustomAttributes.dll");- //获取程序集显示名称
- Console.WriteLine(ass1.FullName);
- //获取程序集中定义的类型
- Type[]types=ass.GetTypes();
- foreach(Typetintypes)
- {
- Console.WriteLine(t.FullName);
- }
- }
- }
- }
以上介绍C# Assembly
【编辑推荐】