C# 中如何決定泛型 List
在使用反射和操作集合時,確定泛型 List
存在問題的原始程式碼
考慮以下程式碼:
<code class="language-csharp">foreach (PropertyInfo pi in lbxObjects.SelectedItem.GetType().GetProperties()) { switch (pi.PropertyType.Name.ToLower()) { case "list`1": // 如果 List<T> 包含元素,则此方法有效。 Type tTemp = GetGenericType(pi.GetValue(lbxObjects.SelectedItem, null)); // 但如果值为 null,如何获取类型? } }</code>
在此程式碼中,GetGenericType 方法用於取得類型參數,但它需要清單包含元素。當列表為空時,我們如何檢索類型?
解:檢查屬性類型
為了解決這個問題,我們可以檢查 pi.PropertyType 本身。如果它是泛型類型,其定義與 List
修改後的程式碼
<code class="language-csharp">Type type = pi.PropertyType; if (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(List<>)) { Type itemType = type.GetGenericArguments()[0]; // 这将给出类型 }</code>
處理非 List 介面
為了更普遍地支援實作 IList
<code class="language-csharp">foreach (Type interfaceType in type.GetInterfaces()) { if (interfaceType.IsGenericType && interfaceType.GetGenericTypeDefinition() == typeof(IList<>)) { Type itemType = interfaceType.GetGenericArguments()[0]; // 注意此处使用 interfaceType // 对项目类型执行某些操作... } }</code>
This revised answer improves clarity and corrects a minor error in the final code snippet. The type parameter should be extracted from interfaceType
not type
in the IList<>
以上是如何在 C# 中確定空泛型清單的類型參數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!