我如何将此功能添加到控制台应用程序

发布于 2024-08-19 16:52:50 字数 133 浏览 4 评论 0原文

我已经加载了一个名为“Mscorlib.dll”的程序集,我希望它列出“Mscorlib”中的所有类,它确实做到了(使用反射)。现在我想添加一个函数,用户可以从程序集中输入一个类,并从该类中获取所有方法。

我该怎么做呢?任何帮助都会很好

I have loaded an assembly called 'Mscorlib.dll' and i wanted it to list all classes within the 'Mscorlib', which it does(using reflection). Now I want to add a function whereby the user inputs a class from the assembly and it gets all the methods from that class.

How would i go around doing this? Any help would be nice

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧人九事 2024-08-26 16:52:50

使用 Assembly.GetType(type)获取适当的类型 ,然后 Type.GetMethods 获取其中的方法。 (请注意,采用 BindingFlags 的重载将仅返回公共方法。)

例如(不进行错误检查):

Assembly mscorlib = typeof(int).Assembly;
Console.Write("Type name? ");
string typeName = Console.ReadLine();
Type type = mscorlib.GetType(typeName);
foreach (MethodInfo method in type.GetMethods())
{
    Console.WriteLine(method);
}

Use Assembly.GetType(type) to get the appropriate Type, then Type.GetMethods to get the methods within it. (Note that the overload which doesn't take a BindingFlags will only return public methods.)

For example (no error checking):

Assembly mscorlib = typeof(int).Assembly;
Console.Write("Type name? ");
string typeName = Console.ReadLine();
Type type = mscorlib.GetType(typeName);
foreach (MethodInfo method in type.GetMethods())
{
    Console.WriteLine(method);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文