http://msdn.microsoft.com/en-us/library/system.reflection.parameterinfo.isout.aspx
修改 这是我的代码的链接: http://img689.imageshack.us/img689/3453/94123952.png
让我知道我的副本和版本在哪里粘贴是错误的。
这是那些无法查看图片的代码:
#region
using System;
using System.Reflection;
#endregion
namespace ConsoleApp
{
class parminfo
{
public static void mymethod(
int int1m, out string str2m, ref string str3m)
{
str2m = "in mymethod";
}
public static int Main(string[] args)
{
Console.WriteLine("\nReflection.Parameterinfo");
//Get the ParameterInfo parameter of a function.
//Get the type.
Type Mytype = Type.GetType("parminfo");
//Get and display the method.
MethodBase Mymethodbase = Mytype.GetMethod("mymethod");
Console.Write("\nMymethodbase = " + Mymethodbase);
//Get the ParameterInfo array.
ParameterInfo[] Myarray = Mymethodbase.GetParameters();
//Get and display the IsOut of each parameter.
foreach (ParameterInfo Myparam in Myarray)
{
Console.Write("\nFor parameter # " + Myparam.Position
+ ", the IsOut is - " + Myparam.IsOut);
}
return 0;
}
}
}
答案 0 :(得分:3)
你的问题是这段代码:
Type.GetType("parminfo")
这将尝试查找具有完全限定名称 parminfo
的类型,但没有这样的类型。您的类在名称空间中声明,因此其完全限定名称为ConsoleApp.parminfo
。
更好的是,只需使用typeof(parminfo)
。
答案 1 :(得分:2)
我复制并粘贴了linked code并收到了以下输出:
Reflection.Parameterinfo
Mymethodbase = Void mymethod(Int32, System.String ByRef, System.String ByRef)
For parameter # 0, the IsOut is - False
For parameter # 1, the IsOut is - True
For parameter # 2, the IsOut is - FalsePress any key to continue . . .
您清楚地复制并粘贴了代码并进行了一些更改,导致代码不正确。复制并粘贴,但不做任何更改并执行代码。如果成功,请告诉我们。然后,如果您尝试进行更改并且收到失败,请告诉我们您所做的更改是什么,我们可以帮助您诊断问题。
注意:我假设您在标记此C#时表示C#代码。我没有测试VB.NET代码。
旁白:为什么微软不能在其示例代码中遵循自己的naming conventions?