NLog Logging Library

LogLevel Greater Than 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 the second one.

[Visual Basic]
returnValue = LogLevel.op_GreaterThan(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