Search results for query: *

  • Users: user4999
  • Content: Threads
  • Order by date
  1. U

    Questions on bitwise operations: how to calculate bit mask and bit shift based on these 3 fixed values?

    I am supposed to determine the bit mask and shift values based on the following 3 values: the start byte, the start bit, and the number of bits. I will receive some byte array for my data of x many bytes. Let's say some random chunk of data within this large byte array represents whether a...
  2. U

    Question How to populate a nested list of objects?

    I have a class as shown below: public class Par { public string id { get { return id; } set { id = value; } } public Int32 num { get { return num; } set { num = value; } } } Now I also created a class named "Msg" which has a nested list of Par objects public class Msg { private...
Back
Top Bottom