C#反射签名中带Out参数的函数
两个方法,签名唯一的区别在于参数带Out例:publicvoidFoo(outstringvalue){}publicvoidFoo(stringvalue){}在反射时...
两个方法,签名唯一的区别在于参数带Out
例:
public void Foo(out string value) {}
public void Foo(string value){}
在反射时如何区分这两个函数
比如在
Type.GetMethod获取的时候 展开
例:
public void Foo(out string value) {}
public void Foo(string value){}
在反射时如何区分这两个函数
比如在
Type.GetMethod获取的时候 展开
2个回答
展开全部
Type.GetMethod可以得到一个MethodInfo对象,MethodInfo对象有一个方法是GetParameters即得到ParameterInfo数组,ParameterInfo对象有一个属性是IsOut。
已知foo的函数原型么?如果已知的话可以用GetMethod(string, Type[])这个重载。
比如你提到的有这样一个类:
class a
{
public void foo(string value);
public void foo(out string value);
}
如果想获得上面那一个方法,用这个语句:
1
type.GetMethod("foo", new Type[] { typeof(string) });
如果想获得下面那一个方法,用这个语句:
1
type.GetMethod("foo", new Type[] { typeof(string).MakeByRefType() });
1 class Program
2 {
3 static void Main(string[] args)
4 {
5
string content = "main"; //#1 variable
6 MethodInfo testMethod = typeof(Program).GetMethod("TestMethod",
7 BindingFlags.Static | BindingFlags.NonPublic);
8 if (testMethod != null)
9 {
10 // Following way can not take content back.
11 //
12 testMethod.Invoke(null, new object[] { content /* #1 variable */ });
13 Console.WriteLine(content); // #1 variable, Output is: main
14 //
15
16
17 object[] invokeArgs = new object[] { content /* #1 variable */ };
18 testMethod.Invoke(null, invokeArgs);
19 content = (string)invokeArgs[0]; // #2 variable, bypass from invoke, set to content.
20 Console.WriteLine(content); // #2 variable, Output is: test
21 }
22 }
23
24 static void TestMethod(ref string arg)
25 {
26 arg = "test"; // #2 variable, wanna bypass to main process.
27 }
28 }
已知foo的函数原型么?如果已知的话可以用GetMethod(string, Type[])这个重载。
比如你提到的有这样一个类:
class a
{
public void foo(string value);
public void foo(out string value);
}
如果想获得上面那一个方法,用这个语句:
1
type.GetMethod("foo", new Type[] { typeof(string) });
如果想获得下面那一个方法,用这个语句:
1
type.GetMethod("foo", new Type[] { typeof(string).MakeByRefType() });
1 class Program
2 {
3 static void Main(string[] args)
4 {
5
string content = "main"; //#1 variable
6 MethodInfo testMethod = typeof(Program).GetMethod("TestMethod",
7 BindingFlags.Static | BindingFlags.NonPublic);
8 if (testMethod != null)
9 {
10 // Following way can not take content back.
11 //
12 testMethod.Invoke(null, new object[] { content /* #1 variable */ });
13 Console.WriteLine(content); // #1 variable, Output is: main
14 //
15
16
17 object[] invokeArgs = new object[] { content /* #1 variable */ };
18 testMethod.Invoke(null, invokeArgs);
19 content = (string)invokeArgs[0]; // #2 variable, bypass from invoke, set to content.
20 Console.WriteLine(content); // #2 variable, Output is: test
21 }
22 }
23
24 static void TestMethod(ref string arg)
25 {
26 arg = "test"; // #2 variable, wanna bypass to main process.
27 }
28 }
展开全部
参考MSDN的文档:http://msdn.microsoft.com/zh-cn/library/system.reflection.parameterinfo.isout.aspx
Type.GetMethod可以得到一个MethodInfo对象,MethodInfo对象有一个方法是GetParameters即得到ParameterInfo数组,ParameterInfo对象有一个属性是IsOut。
Type.GetMethod可以得到一个MethodInfo对象,MethodInfo对象有一个方法是GetParameters即得到ParameterInfo数组,ParameterInfo对象有一个属性是IsOut。
追问
这个我知道。
重点是如何用GetMethod()方法直接获取到想得到的那个方法。
我说的Case具体如下:
Class a
{
public void foo(..
public void foo(...
}
public static void Main()
{
Type type = typeof(a);
var xxx = type.GetMethod(//这部分是重点
}
追答
已知foo的函数原型么?如果已知的话可以用GetMethod(string, Type[])这个重载。
比如你提到的有这样一个类:
class a
{
public void foo(string value);
public void foo(out string value);
}
如果想获得上面那一个方法,用这个语句:
type.GetMethod("foo", new Type[] { typeof(string) });
如果想获得下面那一个方法,用这个语句:
type.GetMethod("foo", new Type[] { typeof(string).MakeByRefType() });
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询