Why does the BitConverter return Bytes and how can I get the bits then?
As input I get an int (well, actually a string I should convert to an int). This int should be converted to bits. For each bit position that has a 1, I should get the position. In my database, I want all records that have an int value field that has this position as value. I currently have the following naive code that should ask my enti...