我有以下代码块。如何从特定的 DLL 文件中获取所有属性名称?目前,我可以获取类名、命名空间,但我不知道如何获取类中的属性。谢谢,
foreach (Type type in myAssambly.GetTypes())
{
PropertyInfo myPI = type.GetProperty("DefaultModifiers");
System.Reflection.PropertyAttributes myPA = myPI.Attributes;
MessageBox.Show(myPA.ToString());
}