Ejemplo n.º 1
0
 /// <summary>
 /// This operation takes an 16-bit value and stores its content to the address location specified
 /// in addr. The address must be a valid memory address in the current process mapped by a previous
 /// MapAddress() call.
 /// </summary>
 /// <param name="addr">Specifies the destination address to store the value.</param>
 /// <param name="value">data to write</param>
 public void Poke16(IntPtr addr, short value)
 {
     AgVisa32.viPoke16(mSession, addr, value);
 }