예제 #1
0
        public bool ReadOutBit(int index, ref uint value)
        {
            try
            {
                if (index < m_nOutputCount)
                {
                    CAXD.AxdoReadOutport(index, ref value);

                    return(true);
                }
                else
                {
                    return(false);
                }
            }
            catch (Exception E)
            {
                throw E;
            }
        }