gpt4 book ai didi

C#:列出程序集中的所有类

转载 作者:IT王子 更新时间:2023-10-29 03:36:49 24 4
gpt4 key购买 nike

我想输出(以编程方式 - C#)我的程序集中所有类的列表。

任何提示或示例代码如何做到这一点?反射(reflection)?

最佳答案

使用Assembly.GetTypes .例如:

Assembly mscorlib = typeof(string).Assembly;
foreach (Type type in mscorlib.GetTypes())
{
Console.WriteLine(type.FullName);
}

关于C#:列出程序集中的所有类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1315665/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com