本文介绍了转换位数组为uint或类似包装的价值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个大阵布尔,我想包/他们解压到一个UINT或类似的价值。我怎样才能做到这在C#?

I have a large array of booleans, and I want to pack/unpack them into a uint or similar value. How can I do this in C#?

推荐答案

您可以使用 BitArray 类转换的布尔阵列到 INT 数组:

You can use the BitArray class to convert the bool array into an int array:

int[] theIntArray = new int[(theBoolArray.Length + 31) / 32];
new BitArray(theBoolArray).CopyTo(theIntArray, 0);

这篇关于转换位数组为uint或类似包装的价值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 11:00