StringSegment.Equality(StringSegment, StringSegment) Operador

Definição

Verifica se duas StringSegment especificadas têm o mesmo valor.Checks if two specified StringSegment have the same value.

public:
 static bool operator ==(Microsoft::Extensions::Primitives::StringSegment left, Microsoft::Extensions::Primitives::StringSegment right);
public static bool operator == (Microsoft.Extensions.Primitives.StringSegment left, Microsoft.Extensions.Primitives.StringSegment right);
static member ( = ) : Microsoft.Extensions.Primitives.StringSegment * Microsoft.Extensions.Primitives.StringSegment -> bool
Public Shared Operator == (left As StringSegment, right As StringSegment) As Boolean

Parâmetros

left
StringSegment

O primeiro StringSegment a ser comparado ou null.The first StringSegment to compare, or null.

right
StringSegment

O segundo StringSegment a ser comparado ou null.The second StringSegment to compare, or null.

Retornos

Boolean

true se o valor de left for o mesmo que o valor de right; caso contrário, false.true if the value of left is the same as the value of right; otherwise, false.

Aplica-se a