The delegate type for adding two instances of the parameter type T.

Namespace: yWorks.Canvas.Animation
Assembly: yWorks.yFilesNET.Viewer (in yWorks.yFilesNET.Viewer.dll) Version: 4.1.0.1 (4.1.0.1)

Syntax

C#
public delegate T Add(
	T value1,
	T value2
)
Visual Basic
Public Delegate Function Add ( _
	value1 As T, _
	value2 As T _
) As T

Parameters

value1
Type: T
An instance of the parameter type T.
value2
Type: T
An instance of the parameter type T.

Return Value

The instance of type T which is the addition of the parameters.

See Also