public byte[] ConvertToBitValues(int value)
{
BitArray b = new BitArray(new int[] { value} );
bool[] bits = new bool[b.Count];
b.CopyTo(bits, 0);
byte[] bitValues = bits.Select(bit => (byte)(bit ? 1 : 0)).ToArray();
return bitValues;
}
//네임 스페이스 확인
using System.Collections;
int 는 32비트 정수라서 bitValues .Length = 32 이다.