예제 #1
0
파일: Localizer.cs 프로젝트: 5509850/baumax
        public string this[string itemname]
        {
            get
            {
                int id = DefaultDiction.GetKeyByWord(itemname);

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

                return(this[id]);
            }
        }