Exemple #1
0
        public string this[string itemname]
        {
            get
            {
                int id = DefaultDiction.GetKeyByWord(itemname);

                if (id <= 0)
                {
                    //throw new Exception();
                    return(null);
                }

                return(this[id]);
            }
        }