Creates a new FunctionValue object setting the Value property to the Double passed in to the constructor and setting the Type property to FunctionValueType.NUMBER.

public FunctionValue(double number)
Public Sub New FunctionValue(number As Double)
FunctionValue myValue = new FunctionValue(3.5d);
Dim myValue As New FunctionValue(3.5d)