Exemplo n.º 1
0
        private void ThrowIfFail(bool result)
        {
            if (!result)
            {
                string msg;
                var    error = commClient.GetLastError(connect, out msg);

                throw new Exception(msg);
            }
        }