Exemplo n.º 1
0
        protected bool GetU16(string key, out UInt16 value)
        {
            string strValue;

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

            return(StrHelper.GetU16(strValue, out value, m_logger));
        }