我如何检查ValueTuple的列表是否为List<ValueTuple>
类型,而不考虑参数的类型。
它可能是 :
new List<(150, "test")>()
new List<("testy", "test", 148)>()
new List<(true, "blablabla")>()
我尝试过的
public static bool IsTupleType2(this object tuple)
{
return tuple is ITuple;
}
此扩展方法适用于ValueTuple对象
所以我尝试了
List<ITuple>
但它不起作用 public static bool IsTupleType2(this object tuple)
{
return tuple is List<ITuple>;
}
任何的想法?
非常感谢。
最佳答案
这是一种相当简单的方法(如果稍微费劲):
private static readonly Type[] tupleTypes = new[]
{
typeof(ValueTuple<>), typeof(ValueTuple<,>), typeof(ValueTuple<,,>),
typeof(ValueTuple<,,,>), typeof(ValueTuple<,,,,>), typeof(ValueTuple<,,,,,>),
typeof(ValueTuple<,,,,,,>), typeof(ValueTuple<,,,,,,,>)
};
public static bool IsListOfValueTuple(Type type)
{
if (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(List<>))
{
var arg = type.GetGenericArguments()[0];
return arg.IsGenericType && tupleTypes.Contains(arg.GetGenericTypeDefinition());
}
return false;
}
public static void Main()
{
Console.WriteLine(IsListOfValueTuple(typeof(List<(string, int)>)));
}