PowerArgs.Cli.SortExpression.SortExpression C# (CSharp) Method

SortExpression() public method

public SortExpression ( string value, bool descending = false ) : System
value string
descending bool
return System
        public SortExpression(string value, bool descending = false)
        {
            this.Value = value;
            this.Descending = descending;
        }
SortExpression