Functor that takes two objects and returns an object.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public delegate Object ObjectBinaryFunction(
	Object obj1,
	Object obj2
)
Visual Basic (Declaration)
Public Delegate Function ObjectBinaryFunction ( _
	obj1 As Object, _
	obj2 As Object _
) As Object
Visual C++
public delegate Object^ ObjectBinaryFunction(
	Object^ obj1, 
	Object^ obj2
)

Parameters

obj1
Type: System..::.Object
obj2
Type: System..::.Object

See Also