M_Furcadia_Net_Web_Variable_op_Addition_1 - StarShip-Avalon-Projects/FurcadiaFramework GitHub Wiki
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 43
C#
public static Variable operator +(
Variable varA,
string str
)
VB
Public Shared Operator + (
varA As Variable,
str As String
) As Variable
VB Usage
Dim varA As Variable
Dim str As String
Dim returnValue As Variable
returnValue = (varA + str)
C++
public:
static Variable^ operator +(
Variable^ varA,
String^ str
)
F#
static let inline (+)
varA : Variable *
str : string : Variable
- varA
- Type: Furcadia.Net.Web.Variable
The variable a. - str
- Type: System.String
The string.
Type: Variable
The result of the operator.