15

我有一个用例,我需要检查一个值是否是 C# 7 ValueTuple,如果是,则遍历每个项目。我尝试检查,obj is ValueTupleobj is (object, object)两者都返回错误。我发现我可以使用obj.GetType().Name并检查它是否以开头,"ValueTuple"但这对我来说似乎很蹩脚。欢迎任何替代方案。

我也有获取每个项目的问题。我试图Item1使用此处找到的解决方案:如何检查属性是否存在于 c# 中的动态匿名类型上?((dynamic)obj).GetType().GetProperty("Item1")返回空值。我希望然后我可以做一个while来获得每件物品。但这不起作用。我怎样才能得到每件物品?

更新 - 更多代码

if (item is ValueTuple) //this does not work, but I can do a GetType and check the name
{
    object tupleValue;
    int nth = 1;
    while ((tupleValue = ((dynamic)item).GetType().GetProperty($"Item{nth}")) != null && //this does not work
        nth <= 8)      
    {
        nth++;
        //Do stuff
    }
}
4

4 回答 4

13

结构在 C# 中不继承,因此、ValueTuple<T1>等是不同的类型,它们不会作为它们的基类继承。因此,检查失败。ValueTuple<T1,T2>ValueTuple<T1,T2,T3>ValueTupleobj is ValueTuple

如果你正在寻找ValueTuple任意类型的参数,你可以检查类是否ValueTuple<,...,>如下:

private static readonly Set<Type> ValTupleTypes = new HashSet<Type>(
    new Type[] { typeof(ValueTuple<>), typeof(ValueTuple<,>),
                 typeof(ValueTuple<,,>), typeof(ValueTuple<,,,>),
                 typeof(ValueTuple<,,,,>), typeof(ValueTuple<,,,,,>),
                 typeof(ValueTuple<,,,,,,>), typeof(ValueTuple<,,,,,,,>)
    }
);
static bool IsValueTuple2(object obj) {
    var type = obj.GetType();
    return type.IsGenericType
        && ValTupleTypes.Contains(type.GetGenericTypeDefinition());
}

要根据类型获取子项,您可以使用一种不是特别快但应该可以解决问题的方法:

static readonly IDictionary<Type,Func<object,object[]>> GetItems = new Dictionary<Type,Func<object,object[]>> {
    [typeof(ValueTuple<>)] = o => new object[] {((dynamic)o).Item1}
,   [typeof(ValueTuple<,>)] = o => new object[] {((dynamic)o).Item1, ((dynamic)o).Item2}
,   [typeof(ValueTuple<,,>)] = o => new object[] {((dynamic)o).Item1, ((dynamic)o).Item2, ((dynamic)o).Item3}
,   ...
};

这会让你这样做:

object[] items = null;
var type = obj.GetType();
if (type.IsGeneric && GetItems.TryGetValue(type.GetGenericTypeDefinition(), out var itemGetter)) {
    items = itemGetter(obj);
}
于 2017-10-12T10:52:12.530 回答
8

关于问题“我怎样才能得到每件物品?”的部分......

ValueTuple 和 Tuple 都实现ITuple了 ,它有一个 length 属性和一个 indexer 属性。因此,以下控制台应用程序代码列出了控制台的值:

// SUT (as a local function)
IEnumerable<object> GetValuesFromTuple(System.Runtime.CompilerServices.ITuple tuple) 
{
    for (var i = 0; i < tuple.Length; i++)
        yield return tuple[i];
}

// arrange
var valueTuple = (StringProp: "abc", IntProp: 123, BoolProp: false, GuidProp: Guid.Empty);

// act
var values = GetValuesFromTuple(valueTuple);

// assert (to console)
Console.WriteLine($"Values = '{values.Count()}'");

foreach (var value in values)
{
    Console.WriteLine($"Value = '{value}'");
}

控制台输出:

Values = '4'
Value = 'abc'
Value = '123'  
Value = 'False'  
Value = '00000000-0000-0000-0000-000000000000'
于 2017-11-03T12:56:48.147 回答
6

这是我解决问题的方法。与 PCL 兼容的扩展类。特别感谢@dasblinkenlight 和@Evk 帮助我!

public static class TupleExtensions
{
    private static readonly HashSet<Type> ValueTupleTypes = new HashSet<Type>(new Type[]
    {
        typeof(ValueTuple<>),
        typeof(ValueTuple<,>),
        typeof(ValueTuple<,,>),
        typeof(ValueTuple<,,,>),
        typeof(ValueTuple<,,,,>),
        typeof(ValueTuple<,,,,,>),
        typeof(ValueTuple<,,,,,,>),
        typeof(ValueTuple<,,,,,,,>)
    });

    public static bool IsValueTuple(this object obj) => IsValueTupleType(obj.GetType());
    public static bool IsValueTupleType(this Type type)
    {
        return type.GetTypeInfo().IsGenericType && ValueTupleTypes.Contains(type.GetGenericTypeDefinition());
    }

    public static List<object> GetValueTupleItemObjects(this object tuple) => GetValueTupleItemFields(tuple.GetType()).Select(f => f.GetValue(tuple)).ToList();
    public static List<Type> GetValueTupleItemTypes(this Type tupleType) => GetValueTupleItemFields(tupleType).Select(f => f.FieldType).ToList();    
    public static List<FieldInfo> GetValueTupleItemFields(this Type tupleType)
    {
        var items = new List<FieldInfo>();

        FieldInfo field;
        int nth = 1;
        while ((field = tupleType.GetRuntimeField($"Item{nth}")) != null)
        {
            nth++;
            items.Add(field);
        }

        return items;
    }
}
于 2017-10-12T11:54:27.813 回答
-1

骇人听闻的一班轮

type.Name.StartsWith("ValueTuple`")

(可以扩展检查末尾的数字)

于 2021-11-08T22:20:02.813 回答