Exemplo n.º 1
0
 /// <summary>
 /// WRITE keyword
 /// Writes a complex value to the device.
 /// </summary>
 /// <param name="writeManager">A WriteManager instance to use</param>
 /// <param name="iostat">A reference variable that will be set to the I/O status</param>
 /// <param name="complexVar">A complex value to write</param>
 /// <returns>A zero value if the operation succeeds, or -1 if the operation fails</returns>
 public static int WRITE(WriteManager writeManager, ref int iostat, Complex complexVar)
 {
     if (writeManager == null) {
         throw new ArgumentNullException("writeManager");
     }
     int charsWritten = writeManager.WriteComplex(complexVar);
     if (charsWritten == -1) {
         iostat = IOError.WriteError;
         return -1;
     }
     return charsWritten;
 }
Exemplo n.º 2
0
        /// <summary>
        /// WRITE keyword
        /// Writes an array of complex values to the device.
        /// </summary>
        /// <param name="writeManager">A WriteManager instance to use</param>
        /// <param name="iostat">A reference variable that will be set to the I/O status</param>
        /// <param name="complexArray">An array of complex value to write</param>
        /// <returns>A zero value if the operation succeeds, or -1 if the operation fails</returns>
        public static int WRITE(WriteManager writeManager, ref int iostat, Complex[] complexArray)
        {
            if (writeManager == null) {
                throw new ArgumentNullException("writeManager");
            }
            int totalCharsWritten = 0;

            foreach (Complex complexVar in complexArray) {
                int charsWritten = writeManager.WriteComplex(complexVar);
                if (charsWritten == -1) {
                    iostat = IOError.WriteError;
                    return -1;
                }
                totalCharsWritten += charsWritten;
            }
            return totalCharsWritten;
        }