Example #1
0
        public static ushort bignumRef(SByteVL b, int index)
        {
            int x;

            if ((index & 1) == 0)
            {
                x = index + 3;
            }
            else
            {
                x = index + 1;
            }
            return(b.getUInt16(x));
        }
Example #2
0
 public static ushort bignumRef(SByteVL b, int index) {
         int x;
         if ((index & 1) == 0) {
                 x = index + 3;
         } else {
                 x = index + 1;
         }
         return b.getUInt16(x);
 }
Example #3
0
 public static ushort bignumRef(SByteVL b, int index) {
     return b.getUInt16(index + BIGNUM_DATA_OFFSET);
 }
Example #4
0
 public static ushort bignumRef(SByteVL b, int index)
 {
     return(b.getUInt16(index + BIGNUM_DATA_OFFSET));
 }