ContourPoint.Equality(ContourPoint, ContourPoint) Operador
Definição
Determina se duas instâncias de ContourPoint são iguais.Determines if two instances of ContourPoint are equal.
public:
static bool operator ==(System::Speech::Synthesis::TtsEngine::ContourPoint point1, System::Speech::Synthesis::TtsEngine::ContourPoint point2);
public static bool operator == (System.Speech.Synthesis.TtsEngine.ContourPoint point1, System.Speech.Synthesis.TtsEngine.ContourPoint point2);
static member ( = ) : System.Speech.Synthesis.TtsEngine.ContourPoint * System.Speech.Synthesis.TtsEngine.ContourPoint -> bool
Public Shared Operator == (point1 As ContourPoint, point2 As ContourPoint) As Boolean
Parâmetros
- point1
- ContourPoint
Uma instância de ContourPoint a ser comparada à instância de ContourPoint fornecida pelo argumento point2.An instance of ContourPoint to compare against the instance of ContourPoint provided by the point2 argument.
- point2
- ContourPoint
Uma instância de ContourPoint a ser comparada à instância de ContourPoint fornecida pelo argumento point1.An instance of ContourPoint to compare against the instance of ContourPoint provided by the point1 argument.
Retornos
Retorna true se as instâncias ContourPoint referenciadas por point1 e point2 forem iguais; caso contrário, retornará false.Returns true if the ContourPoint instances referenced by point1 and point2 are equal, otherwise returns false.
Comentários
O método equivalente para esse operador é ContourPoint.Equals(ContourPoint) .The equivalent method for this operator is ContourPoint.Equals(ContourPoint).