我使用反射来获取类型对象的返回值,但它的实际类型是(int [],string [])我用obj.GetType()进行双重检查.ToString()并打印System.ValueTuple`2 [ System.Int32 [],System.String []].
但只是使用((int [],string []))obj或(ValueTuple< int [],string []>)obj进行转换,返回转换为无效.如何正确地做到这一点?
最佳答案 好的,我终于搞定了.
可以进一步反映ValueTuple的Field ItemX.不确定是否有其他更少的强制方式,我们可以整体上得到元组.
using System;
namespace CTest
{
class Program
{
static void Main(string[] args)
{
Test t = new Test();
var tuple = typeof(Test).GetMethod(nameof(t.ReturnTuple)).Invoke(t, null);
int[] i = (int[])typeof((int[], string[])).GetField("Item1").GetValue(tuple);
string[] s = (string[])typeof((int[], string[])).GetField("Item2").GetValue(tuple);
foreach (int data in i)
{
Console.WriteLine(data.ToString());
}
foreach (string data in s)
{
Console.WriteLine(data);
}
// Output :
// 1
// 2
// 3
// a
// b
// c
}
}
class Test
{
public (int[], string[]) ReturnTuple() => (new int[] { 1, 2, 3 }, new string[] { "a", "b", "c" });
}
}