我正在尝试使用在泛型方法的参数列表ValueTuple
中简洁地输入N
类型列表,然后再迭代该类型列表。
但是,我在迭代类型时遇到了问题,因为初始Tuple
有null
成员,所以调用.GetType()
会给我一个 NullReferenceException。
我意识到我可以使用 Type 对象的实际列表来做我需要的事情,但我更喜欢创建元组时允许的非常简洁的语法......当然因为这样的事情让我很感兴趣 :)
public static void IterateTupleMemberTypes<T>() where T : ITuple, new()
{
var tuple = new T();
for (var i = 0; i < tuple.Length; ++i)
{
//First call to GetType() succeeds, first element is an int.
//Second call to GetType() fails (null ref ex), second element is a string.
Console.WriteLine($"Item{i} Type: {tuple[i].GetType()}");
}
}
用法
public class CustomClass
{
public int ID { get; set; }
}
IterateTupleMemberTypes<(int, string, CustomClass)>();