AppHarbor.Commands.HelpCommand.GetScope C# (CSharp) Method

GetScope() private static method

private static GetScope ( Type x ) : string
x System.Type
return string
        private static string GetScope(Type x)
        {
            return SplitUpperCase(x.Name).Where(y => y != "Command").Last();
        }