 | ConditionMethodsEquals2 Method (Object, Object) |
Compares two values for equality.
Namespace:
NLog.Conditions
Assembly:
NLog (in NLog.dll) Version: 5.5.0+1873145cbc26e0312d9481234d69ce7dc68aac4e
Syntaxpublic static bool Equals2(
Object firstValue,
Object secondValue
)
Public Shared Function Equals2 (
firstValue As Object,
secondValue As Object
) As Boolean
Dim firstValue As Object
Dim secondValue As Object
Dim returnValue As Boolean
returnValue = ConditionMethods.Equals2(firstValue,
secondValue)
static member Equals2 :
firstValue : Object *
secondValue : Object -> bool
Parameters
- firstValue
- Type: SystemObject
The first value. - secondValue
- Type: SystemObject
The second value.
Return Value
Type:
Booleantrue when two objects are equal,
false otherwise.
See Also