/// <summary> /// This operation takes an 32-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 Poke32(IntPtr addr, int value) { AgVisa32.viPoke32(mSession, addr, value); }