LynnaLab.ConstantsMapping.GetAllStrings C# (CSharp) Method

GetAllStrings() public method

public GetAllStrings ( ) : IList
return IList
        public IList<string> GetAllStrings()
        {
            return stringList;
        }

Usage Example

示例#1
0
        public void SetConstantsMapping(ConstantsMapping mapping)
        {
            this.mapping = mapping;
            keyText      = new string[mapping.GetAllStrings().Count];

            int i = 0;

            foreach (string key in mapping.GetAllStrings())
            {
                string text  = mapping.RemovePrefix(key);
                int    value = mapping.StringToByte(key);
                combobox1.AppendText(text);

                keyText[i] = key;
                i++;
            }
        }
All Usage Examples Of LynnaLab.ConstantsMapping::GetAllStrings