gpt4 book ai didi

c# - 获取没有命名空间的枚举或类的字符串名称?

转载 作者:行者123 更新时间:2023-11-30 19:50:05 25 4
gpt4 key购买 nike

所以,我想获取一个枚举或类的名称,但前面没有附加完整的命名空间...例如:

enum MyEnum {
// enum values here
}

// somewhere else in the code
string testString = ???? // ???? returns "MyEnum"

typeof(MyEnum) 大多数情况下有效,但是枚举的 namespace 附加到前面。

任何帮助将不胜感激......谢谢!

最佳答案

使用.Name只获取字符串中的类型,如下所示:

string testString = typeof(MyEnum).Name;

这里有一些例子:

typeof(String).Name // "String"
typeof(String).FullName // "System.String"

.FullName像上面的例子一样,给出了完整的类型名称,包括命名空间。

关于c# - 获取没有命名空间的枚举或类的字符串名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2739170/

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