public static bool operator ==(
Rectangle rect,
ConsoleRectangle consoleRect
)
Public Shared Operator = (
rect As Rectangle,
consoleRect As ConsoleRectangle
) As Boolean
Dim rect As Rectangle
Dim consoleRect As ConsoleRectangle
Dim returnValue As Boolean
returnValue = (rect = consoleRect)
public:
static bool operator ==(
Rectangle rect,
ConsoleRectangle consoleRect
)
static let inline (=)
rect : Rectangle *
consoleRect : ConsoleRectangle : bool
No code example is currently available or this language may not be supported.