gpt4 book ai didi

c# - 如何从枚举中获取数值?

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

例如 System.Net.HttpStatusCode 枚举,我想获取 HTTP 状态代码而不是 HTTP 状态文本。 System.Net.HttpStatusCode.Forbidden 应该返回 403 而不是“Forbidden”。

如何提取值(value)?

最佳答案

对于大多数 Enum,只需转换为 int32 的基本类型。

int value = (int)System.Net.HttpStatusCode.Forbidden;

关于c# - 如何从枚举中获取数值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1540779/

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