显然ITuple是内部的,禁用了诸如typeof(ITuple).IsAssignableFrom(type)之类的解决方案.另外,确定元组的最有效方法是什么?直到Tuple<,>?没有类型名称比较的解决方案是优选的.
解决方法
试试这个:
public static bool IsTupleType(Type type,bool checkBaseTypes = false) { if (type == null) throw new ArgumentNullException(nameof(type)); if (type == typeof(Tuple)) return true; while (type != null) { if (type.IsGenericType) { var genType = type.GetGenericTypeDefinition(); if (genType == typeof(Tuple<>) || genType == typeof(Tuple<,>) || genType == typeof(Tuple<,>)) return true; } if (!checkBaseTypes) break; type = type.BaseType; } return false; }