我复制并粘贴了此示例,但它似乎失败了。为什么MethodBase为null?
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;
}
}
}
最佳答案
您的问题是此代码:
Type.GetType("parminfo")
这将尝试查找具有完全限定名称
parminfo
的类型,但没有这样的类型。您的类在名称空间中声明,因此其完全限定名称为ConsoleApp.parminfo
。更好的是,只需使用
typeof(parminfo)
。