[]
Returns the result of the function applied to the arguments.
public abstract object Evaluate(object[] args)
Public MustOverride Function Evaluate(args As Object()) As Object
Type | Name | Description |
---|---|---|
object[] | args | Arguments for the function evaluation |
Type | Description |
---|---|
object | Result of the function applied to the arguments |
Returns the result of the function applied to the arguments.
public virtual object Evaluate(object[] args, object context)
Public Overridable Function Evaluate(args As Object(), context As Object) As Object
Type | Name | Description |
---|---|---|
object[] | args | Arguments for the function evaluation |
object | context | Context in which the evaluation occurs |
Type | Description |
---|---|
object | Result of the function applied to the arguments |