Comment puis-je convertir BitArray
en un seul int
? Le moyen le plus rapide ...
private int getIntFromBitArray(BitArray bitArray)
{
if (bitArray.Length > 32)
throw new ArgumentException("Argument length shall be at most 32 bits.");
int[] array = new int[1];
bitArray.CopyTo(array, 0);
return array[0];
}
private int getIntFromBitArray(BitArray bitArray)
{
int value = 0;
for (int i = 0; i < bitArray.Count; i++)
{
if (bitArray[i])
value += Convert.ToInt16(Math.Pow(2, i));
}
return value;
}
Cette version:
La mise en oeuvre:
public static ulong BitArrayToU64(BitArray ba)
{
var len = Math.Min(64, ba.Count);
ulong n = 0;
for (int i = 0; i < len; i++) {
if (ba.Get(i))
n |= 1UL << i;
}
return n;
}
Concernant ce post (# 43935747). Une valeur X est courte pour laquelle je mets deux bits (6 et 10) comme ci-dessous: X court = 1;
var result = X;
var bitsToSet = new [ ] { 5,9 };
foreach ( var bitToSet in bitsToSet )
{
result+=( short ) Math.Pow ( 2,bitToSet );
}
string binary = Convert.ToString ( result,2 );
Maintenant, je voudrais lire tous les bits spécifiques de Value X et les insérer dans un tableau ou un type de bit comme bool Val1 = bit1, bool Val2 = bit2 ....
Je suis un débutant et je pense que c'est assez simple pour vous les gars ..