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)); }
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); }
public static ushort bignumRef(SByteVL b, int index) { return b.getUInt16(index + BIGNUM_DATA_OFFSET); }
public static ushort bignumRef(SByteVL b, int index) { return(b.getUInt16(index + BIGNUM_DATA_OFFSET)); }