Share via


SourceLocation.GreaterThan(SourceLocation, SourceLocation) Operator

Definition

Determines whether the first operand is greater than the second operand.

public:
 static bool operator >(Microsoft::AspNetCore::Razor::SourceLocation left, Microsoft::AspNetCore::Razor::SourceLocation right);
public static bool operator > (Microsoft.AspNetCore.Razor.SourceLocation left, Microsoft.AspNetCore.Razor.SourceLocation right);
static member ( > ) : Microsoft.AspNetCore.Razor.SourceLocation * Microsoft.AspNetCore.Razor.SourceLocation -> bool
Public Shared Operator > (left As SourceLocation, right As SourceLocation) As Boolean

Parameters

left
SourceLocation

The left operand.

right
SourceLocation

The right operand.

Returns

true if left is greater than right.

Applies to