public bool IsList(object value)
{
Type type = value.GetType();
// Check if type is a generic list of any type
}
¿Cuál es la mejor manera de comprobar si el objeto dado es una lista o si se puede convertir en una lista?
public bool IsList(object value)
{
Type type = value.GetType();
// Check if type is a generic list of any type
}
¿Cuál es la mejor manera de comprobar si el objeto dado es una lista o si se puede convertir en una lista?
Respuestas:
using System.Collections;
if(value is IList && value.GetType().IsGenericType) {
}
List<T>
y se ObservableCollection<T>
implementa IList
.
Para ustedes que disfrutan del uso de métodos de extensión:
public static bool IsGenericList(this object o)
{
var oType = o.GetType();
return (oType.IsGenericType && (oType.GetGenericTypeDefinition() == typeof(List<>)));
}
Entonces, podríamos hacer:
if(o.IsGenericList())
{
//...
}
return oType.GetTypeInfo().IsGenericType && oType.GetGenericTypeDefinition() == typeof(List<>);
IList<>
Sería más seguro buscar en su lugar?
bool isList = o.GetType().IsGenericType
&& o.GetType().GetGenericTypeDefinition() == typeof(IList<>));
Según la respuesta de Victor Rodrigues, podemos idear otro método para los genéricos. De hecho, la solución original se puede reducir a solo dos líneas:
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>);
}
Aquí hay una implementación que funciona en .NET Standard y funciona con interfaces:
public static bool ImplementsGenericInterface(this Type type, Type interfaceType)
{
return type
.GetTypeInfo()
.ImplementedInterfaces
.Any(x => x.GetTypeInfo().IsGenericType && x.GetGenericTypeDefinition() == interfaceType);
}
Y aquí están las pruebas (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)));
}
Estoy usando el siguiente código:
public bool IsList(Type type) => IsGeneric(type) && (
(type.GetGenericTypeDefinition() == typeof(List<>))
|| (type.GetGenericTypeDefinition() == typeof(IList<>))
);
Probablemente, la mejor manera sería hacer algo como esto:
IList list = value as IList;
if (list != null)
{
// use list in here
}
Esto le dará la máxima flexibilidad y también le permitirá trabajar con muchos tipos diferentes que implementan la IList
interfaz.