Variable.Addition Operator (Variable, String)

FFF3PP

VariableAddition Operator (Variable, String)

This stuff is still in the planning stages. Any questions or Comments are welcome.

[This is preliminary documentation and is subject to change.]

Implements the operator +.

Namespace:  Furcadia.Net.Web
Assembly:  FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 44
Syntax
public static Variable operator +(
	Variable varA,
	string str
)
Public Shared Operator + ( 
	varA As Variable,
	str As String
) As Variable

Dim varA As Variable
Dim str As String
Dim returnValue As Variable

returnValue = (varA + str)
public:
static Variable^ operator +(
	Variable^ varA, 
	String^ str
)
static let inline (+)
        varA : Variable * 
        str : string  : Variable

Parameters

varA
Type: Furcadia.Net.WebVariable
The variable a.
str
Type: SystemString
The string.

Return Value

Type: Variable
The result of the operator.
See Also