利用反射获取.DLL文件中的属性和方法以及版本信息

首先引入System.Reflection命名空间。

System.Reflection.Assembly s = System.Reflection.Assembly.Load("mscorlib.dll"); lblZhang.Text = s.FullName; lblZhang.Text += "
程序集类型:" + s.GetType().ToString(); int count = s.GetTypes().Length; Type[] T = s.GetTypes(); for (int i = 0; i < count; i++) { Response.Write(T[i].FullName+"
"); }

你可能感兴趣的:(ASP.NET)