Functor that takes two strings and returns a string.

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

Syntax

C#
public delegate string StringBinaryFunction(
	string s1,
	string s2
)
Visual Basic (Declaration)
Public Delegate Function StringBinaryFunction ( _
	s1 As String, _
	s2 As String _
) As String
Visual C++
public delegate String^ StringBinaryFunction(
	String^ s1, 
	String^ s2
)

Parameters

s1
Type: System..::.String
s2
Type: System..::.String

See Also