ShellCommandEquality Operator |
Equality operator.
Namespace:
Jam.Shell
Assembly:
ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.1
Syntax public static bool operator ==(
ShellCommand pCommand1,
ShellCommand pCommand2
)
Public Shared Operator = (
pCommand1 As ShellCommand,
pCommand2 As ShellCommand
) As Boolean
public:
static bool operator ==(
ShellCommand^ pCommand1,
ShellCommand^ pCommand2
)
static let inline (=)
pCommand1 : ShellCommand *
pCommand2 : ShellCommand : bool
Parameters
- pCommand1
- Type: Jam.ShellShellCommand
The first command. - pCommand2
- Type: Jam.ShellShellCommand
The second command.
Return Value
Type:
BooleanTrue if both
ShellCommand instances are null or if they represent the same Command; false otherwise.
See Also