| ConditionMethodsEquals2 Method (Object, Object) |
Compares two values for equality.
Namespace:
NLog.Conditions
Assembly:
NLog (in NLog.dll) Version: 5.3.4+73d83d3161d31288ca5c554cc50d27b6bed5f28b
Syntax public 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