GetExtendedString() public méthode

Gets a string from the extended strings section.
public GetExtendedString ( string name ) : string
name string The name of the string as contained in the extended names section.
Résultat string
Exemple #1
0
            private void AddKey(TermInfo.Database db, string extendedName, ConsoleKey key, bool shift, bool alt, bool control)
            {
                string keyFormat = db.GetExtendedString(extendedName);

                if (!string.IsNullOrEmpty(keyFormat))
                {
                    KeyFormatToConsoleKey[keyFormat] = new ConsoleKeyInfo('\0', key, shift, alt, control);
                }
            }