LogLevel.op_GreaterThan

LogLevel GreaterThan operator

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

public static bool operator >(LogLevel l1, LogLevel l2)
ParameterTypeDescription
l1LogLevelThe first level.
l2LogLevelThe second level.

Return Value

The value of l1.Ordinal > l2.Ordinal

See Also