NLog Logging Library

LogLevel Greater Than Or Equal Operator 

[This is preliminary documentation and subject to change.]

Compares two LogLevel objects and returns a value indicating whether the first one is greater than or equal to the second one.

[Visual Basic]
returnValue = LogLevel.op_GreaterThanOrEqual(l1, l2)
[C#]
public static bool operator >=(
   LogLevel l1,
   LogLevel l2
);

Parameters

l1
The first level.
l2
The second level.

Return Value

The value of l1.Ordinal >= l2.Ordinal

See Also

LogLevel Class | NLog Namespace