Arc.Infrastructure.Utilities.Expressions.ValueFinder.IsConstantValue C# (CSharp) Method

IsConstantValue() private static method

private static IsConstantValue ( Expression expression ) : bool
expression System.Linq.Expressions.Expression
return bool
        private static bool IsConstantValue(Expression expression)
        {
            return expression is ConstantExpression;
        }