Exemplo n.º 1
0
 private bitField(int nBits, byte[] Bytes, bitFieldArg aoeu)
 {
     this.nbits = nBits;
     this.bytes = Bytes;
 }
Exemplo n.º 2
0
 void addBitField(string fatherField, string bitFieldName, byte data, byte bitOffset)
 {
     if (!bitFieldList.ContainsKey(fatherField))
         bitFieldList[fatherField] = new Dictionary<int, bitFieldArg>();
     bitFieldList[fatherField][bitOffset] = new bitFieldArg(bitFieldName, data, bitOffset);
 }