Dream.Equality Operator

FFF3PP

DreamEquality Operator

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.DreamInfo
Assembly:  FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 44
Syntax
public static bool operator ==(
	Dream dreamA,
	IDream dreamB
)
Public Shared Operator = ( 
	dreamA As Dream,
	dreamB As IDream
) As Boolean

Dim dreamA As Dream
Dim dreamB As IDream
Dim returnValue As Boolean

returnValue = (dreamA = dreamB)
public:
static bool operator ==(
	Dream^ dreamA, 
	IDream^ dreamB
)
static let inline (=)
        dreamA : Dream * 
        dreamB : IDream  : bool

Parameters

dreamA
Type: Furcadia.Net.DreamInfoDream
The dream a.
dreamB
Type: Furcadia.Net.DreamInfoIDream
The dream b.

Return Value

Type: Boolean
The result of the operator.
See Also