gpt4 book ai didi

c# - 使用 C# 将 bool 数组转换为字符串

转载 作者:太空宇宙 更新时间:2023-11-03 17:18:39 25 4
gpt4 key购买 nike

我有一个看起来像这样的数组:

status[0] = true
status[1] = true
status[2] = false
status[3] = true

实际上它更大但仍然不到 20。我需要将其转换为“ABD”。其中每个 true 代表字母表中的一个有序字母。谁能想到一种简单有效的方法来做到这一点?

最佳答案

我的餐巾纸说这可能有用...

StringBuilder sb = new StringBuilder();
for(int i = 0; i < status.Length; i++)
{
if(status[i])
{
sb.Append((char)('A' + i));
}
}

string result = sb.ToString();

关于c# - 使用 C# 将 bool 数组转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5891035/

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