Exemple #1
0
        protected bool GetByte(string key, out Byte value)
        {
            string strValue;

            if (!GetString(key, out strValue))
            {
                value = 0;
                return(false);
            }
            return(StrHelper.GetByte(strValue, out value, m_logger));
        }