我使用反射检查C#方法的参数。该方法有一些输出参数,对于这些参数,我得到了返回类型,它们具有IsByRef = true。例如,如果参数声明为“out string xxx”,则参数的类型为System.String&。有没有办法转换System.String&回到System.String?解决方案当然不仅适用于System.String,而且适用于任何类型。
答案 0 :(得分:25)
演示:
using System;
using System.Reflection;
class Test
{
public void Foo(ref string x)
{
}
static void Main()
{
MethodInfo method = typeof(Test).GetMethod("Foo");
Type stringByRef = method.GetParameters()[0].ParameterType;
Console.WriteLine(stringByRef);
Type normalString = stringByRef.GetElementType();
Console.WriteLine(normalString);
}
}