Net.Http.WebApi.OData.Query.Expressions.ConstantNode.Double C# (CSharp) Method

Double() public static method

Gets a ConstantNode which represents a double value.
public static Double ( string literalText, double value ) : ConstantNode
literalText string The literal text.
value double The value.
return ConstantNode
        public static ConstantNode Double(string literalText, double value)
        {
            return new ConstantNode(EdmType.Double, literalText, value);
        }