public bool IsList(object value)
{
Type type = value.GetType();
// Check if type is a generic list of any type
}
วิธีใดที่ดีที่สุดในการตรวจสอบว่าวัตถุที่ระบุเป็นรายการหรือสามารถส่งไปยังรายการได้
public bool IsList(object value)
{
Type type = value.GetType();
// Check if type is a generic list of any type
}
วิธีใดที่ดีที่สุดในการตรวจสอบว่าวัตถุที่ระบุเป็นรายการหรือสามารถส่งไปยังรายการได้
คำตอบ:
using System.Collections;
if(value is IList && value.GetType().IsGenericType) {
}
List<T>
และการดำเนินการObservableCollection<T>
IList
สำหรับพวกคุณที่ชอบใช้วิธีการต่อ:
public static bool IsGenericList(this object o)
{
var oType = o.GetType();
return (oType.IsGenericType && (oType.GetGenericTypeDefinition() == typeof(List<>)));
}
ดังนั้นเราสามารถทำได้:
if(o.IsGenericList())
{
//...
}
return oType.GetTypeInfo().IsGenericType && oType.GetGenericTypeDefinition() == typeof(List<>);
IList<>
แทนจะปลอดภัยกว่าหรือไม่?
bool isList = o.GetType().IsGenericType
&& o.GetType().GetGenericTypeDefinition() == typeof(IList<>));
public bool IsList(object value) {
return value is IList
|| IsGenericList(value);
}
public bool IsGenericList(object value) {
var type = value.GetType();
return type.IsGenericType
&& typeof(List<>) == type.GetGenericTypeDefinition();
}
if(value is IList && value.GetType().GetGenericArguments().Length > 0)
{
}
จากคำตอบของ Victor Rodrigues เราสามารถคิดค้นวิธีอื่นสำหรับยาชื่อสามัญได้ ในความเป็นจริงโซลูชันดั้งเดิมสามารถลดลงเหลือเพียงสองบรรทัด:
public static bool IsGenericList(this object Value)
{
var t = Value.GetType();
return t.IsGenericType && t.GetGenericTypeDefinition() == typeof(List<>);
}
public static bool IsGenericList<T>(this object Value)
{
var t = Value.GetType();
return t.IsGenericType && t.GetGenericTypeDefinition() == typeof(List<T>);
}
นี่คือการใช้งานที่ทำงานใน. NET Standard และทำงานกับอินเทอร์เฟซ:
public static bool ImplementsGenericInterface(this Type type, Type interfaceType)
{
return type
.GetTypeInfo()
.ImplementedInterfaces
.Any(x => x.GetTypeInfo().IsGenericType && x.GetGenericTypeDefinition() == interfaceType);
}
และนี่คือการทดสอบ (xunit):
[Fact]
public void ImplementsGenericInterface_List_IsValidInterfaceTypes()
{
var list = new List<string>();
Assert.True(list.GetType().ImplementsGenericInterface(typeof(IList<>)));
Assert.True(list.GetType().ImplementsGenericInterface(typeof(IEnumerable<>)));
Assert.True(list.GetType().ImplementsGenericInterface(typeof(IReadOnlyList<>)));
}
[Fact]
public void ImplementsGenericInterface_List_IsNotInvalidInterfaceTypes()
{
var list = new List<string>();
Assert.False(list.GetType().ImplementsGenericInterface(typeof(string)));
Assert.False(list.GetType().ImplementsGenericInterface(typeof(IDictionary<,>)));
Assert.False(list.GetType().ImplementsGenericInterface(typeof(IComparable<>)));
Assert.False(list.GetType().ImplementsGenericInterface(typeof(DateTime)));
}
ฉันใช้รหัสต่อไปนี้:
public bool IsList(Type type) => IsGeneric(type) && (
(type.GetGenericTypeDefinition() == typeof(List<>))
|| (type.GetGenericTypeDefinition() == typeof(IList<>))
);
อาจเป็นวิธีที่ดีที่สุดที่จะทำสิ่งนี้:
IList list = value as IList;
if (list != null)
{
// use list in here
}
สิ่งนี้จะทำให้คุณมีความยืดหยุ่นสูงสุดและยังช่วยให้คุณทำงานกับประเภทต่างๆมากมายที่ใช้IList
อินเทอร์เฟซ