gpt4 book ai didi

c# - Maskfield 选定值

转载 作者:行者123 更新时间:2023-11-28 07:56:59 26 4
gpt4 key购买 nike

我有一个 (int)maskfield,其中包含 selectlist 的选定值。
文档:MaskField
我有一个与掩码字段的条目相对应的字符串数组。

填充此掩码字段后,我想检索我们在数组中选择的选项。
我怎样才能用这个 int 做到这一点?

最佳答案

我找到了怎么做:

ArrayList maGroupNames; // This is my array of options (string)
int mCategory; // This is my maskfield's result

for (int i = 0; i < maGroupNames.Count; i++)
{
int layer = 1 << i;
if ((mCategory & layer) != 0)
{
//This group is selected
}
}

关于c# - Maskfield 选定值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12494694/

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