Exemplo n.º 1
0
        /// <summary>
        /// Returns the integer alias first from this IConfig then
        /// the parent if there is none.
        /// </summary>
        private uint GetUIntAlias(string key, string alias)
        {
            uint result = 0;

            if (aliasText.ContainsInt(key, alias))
            {
                result = aliasText.GetUInt(key, alias);
            }
            else
            {
                result = ConfigSource.Alias.GetUInt(key, alias);
            }

            return(result);
        }