請原諒我只是爲了掌握這些術語,我在這裏是C#知識的邊緣,需要尋求指導。我有一個DLL,其中包括兩個類和一個窗體(附加類)其中一個類的工作項具有公共(字符串名稱,int ID)。 // in the DLL:
public class workitems {
public string name {get;set;}
public int id{get;set;}
}
主
我想使用Reflection來動態填充我的複選框。 我發現了一個幫助回答here ,並用它在我的代碼: public static List<System.Type> getModuleList()
{
// fill with all Classes in Timestamp.View.UserControls.ModuleView per Reflection
給定以下代碼爲什麼方法變量爲null? Type[] typeArgs = { typeof(SomeClass) };
var listRef = typeof(List<>);
var list = Activator.CreateInstance(listRef.MakeGenericType(typeArgs));
var method = list.GetType().GetMet