gpt4 book ai didi

c# - 我怎样才能将这种情况更改为我想要的

转载 作者:太空狗 更新时间:2023-10-29 20:42:44 25 4
gpt4 key购买 nike

我有两个值的条件。如果条件等于 0,则返回 Absent,如果等于 1,则返回 present。现在我想将第三个值添加到我的条件中。如果条件等于 3,则返回 Unacceptable absent

这是我的条件,有两个值:

(status >= 1 ? "Present" : "Absent")

我怎样才能改变条件?

最佳答案

使用查找字典。

//Initialized once in your program
var lookup = new Dictionary<int,string>
{
{ 0, "Absent"},
{ 1, "Present"},
{ 3, "Unacceptably Absent" }
};

//Call this whenever you need to convert a status code to a string
var description = lookup[status];

关于c# - 我怎样才能将这种情况更改为我想要的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56574185/

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