Sep.Git.Tfs.Util.GitTfsCommandFactory.GetAliasesForCommandName C# (CSharp) Méthode

GetAliasesForCommandName() public méthode

public GetAliasesForCommandName ( string name ) : IEnumerable
name string
Résultat IEnumerable
        public IEnumerable<string> GetAliasesForCommandName(string name)
        {
            return AliasMap.Where(p => p.Value == name).Select(p => p.Key);
        }