ContourPoint.Inequality(ContourPoint, ContourPoint) 연산자
정의
두 ContourPoint 인스턴스가 다른지 여부를 확인합니다.Determines if two instances of ContourPoint are NOT 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 op_Inequality : System.Speech.Synthesis.TtsEngine.ContourPoint * System.Speech.Synthesis.TtsEngine.ContourPoint -> bool
Public Shared Operator != (point1 As ContourPoint, point2 As ContourPoint) As Boolean
매개 변수
- point1
- ContourPoint
point2
인수에서 제공된 ContourPoint의 인스턴스와 비교할 ContourPoint의 인스턴스An instance of ContourPoint to compare against the instance of ContourPoint provided by the point2
argument.
- point2
- ContourPoint
point1
인수에서 제공된 ContourPoint의 인스턴스와 비교할 ContourPoint의 인스턴스An instance of ContourPoint to compare against the instance of ContourPoint provided by the point1
argument.
반환
point1
및 point2
에서 참조한 ContourPoint 인스턴스가 같지 않은 경우 true
를 반환하고, 그렇지 않은 경우 false
를 반환합니다.Returns true
if the ContourPoint instances referenced by point1
and point2
are NOT equal, otherwise returns false
.
설명
이 연산자에 대 한 해당 메서드는 ContourPoint.Equals(ContourPoint)합니다.The equivalent method for this operator is ContourPoint.Equals(ContourPoint).